From 93839abb664713ae47a266561b86fdb834ed006f Mon Sep 17 00:00:00 2001 From: jennyf19 Date: Wed, 3 Mar 2021 15:55:04 -0800 Subject: [PATCH] make L1expirationTime internal for now (#1039) --- .../Distributed/MsalDistributedTokenCacheAdapterOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.Identity.Web/TokenCacheProviders/Distributed/MsalDistributedTokenCacheAdapterOptions.cs b/src/Microsoft.Identity.Web/TokenCacheProviders/Distributed/MsalDistributedTokenCacheAdapterOptions.cs index ea3b56523..b15933f1c 100644 --- a/src/Microsoft.Identity.Web/TokenCacheProviders/Distributed/MsalDistributedTokenCacheAdapterOptions.cs +++ b/src/Microsoft.Identity.Web/TokenCacheProviders/Distributed/MsalDistributedTokenCacheAdapterOptions.cs @@ -23,6 +23,6 @@ public class MsalDistributedTokenCacheAdapterOptions : DistributedCacheEntryOpti /// expiration time values relative to the Distributed (L2) cache. /// Default is 1. /// - public double L1ExpirationTimeRatio { get; set; } = 1; + internal double L1ExpirationTimeRatio { get; set; } = 1; } }