1 write to Caches
System.IdentityModel (1)
System\IdentityModel\Configuration\IdentityConfiguration.cs (1)
158set { _serviceHandlerConfiguration.Caches = value; }
12 references to Caches
System.IdentityModel (11)
System\IdentityModel\Configuration\IdentityConfiguration.cs (5)
157get { return _serviceHandlerConfiguration.Caches; } 570handlerConfiguration.Caches.TokenReplayCache = CustomTypeElement.Resolve<TokenReplayCache>(element.Caches.TokenReplayCache); 575handlerConfiguration.Caches.SessionSecurityTokenCache = CustomTypeElement.Resolve<SessionSecurityTokenCache>(element.Caches.SessionSecurityTokenCache); 672handlerConfiguration.Caches.TokenReplayCache = CustomTypeElement.Resolve<TokenReplayCache>(element.Caches.TokenReplayCache); 677handlerConfiguration.Caches.SessionSecurityTokenCache = CustomTypeElement.Resolve<SessionSecurityTokenCache>(element.Caches.SessionSecurityTokenCache);
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (3)
1661if (Configuration.Caches.TokenReplayCache == null) 1688if (Configuration.Caches.TokenReplayCache.Contains(key)) 1696Configuration.Caches.TokenReplayCache.AddOrUpdate(key, token, DateTimeUtil.Add(this.GetTokenReplayCacheEntryExpirationTime(samlToken), Configuration.MaxClockSkew));
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (3)
800if (Configuration.Caches.TokenReplayCache == null) 828if (Configuration.Caches.TokenReplayCache.Contains(key)) 843Configuration.Caches.TokenReplayCache.AddOrUpdate(key, token, DateTimeUtil.Add(GetTokenReplayCacheEntryExpirationTime(samlToken), Configuration.MaxClockSkew));
System.ServiceModel (1)
System\ServiceModel\Security\FederatedSecurityTokenManager.cs (1)
64_tokenCache = _securityTokenHandlerCollection.Configuration.Caches.SessionSecurityTokenCache;