1 type derived from TokenReplayCache
System.IdentityModel (1)
System\IdentityModel\Tokens\DefaultTokenReplayCache.cs (1)
12internal class DefaultTokenReplayCache : TokenReplayCache
9 references to TokenReplayCache
System.IdentityModel (9)
System\IdentityModel\Configuration\IdentityConfiguration.cs (2)
570handlerConfiguration.Caches.TokenReplayCache = CustomTypeElement.Resolve<TokenReplayCache>(element.Caches.TokenReplayCache); 672handlerConfiguration.Caches.TokenReplayCache = CustomTypeElement.Resolve<TokenReplayCache>(element.Caches.TokenReplayCache);
System\IdentityModel\Configuration\IdentityModelCaches.cs (2)
16private TokenReplayCache tokenReplayCache = new DefaultTokenReplayCache(); 22public TokenReplayCache TokenReplayCache
System\IdentityModel\Configuration\IdentityModelCachesElement.cs (1)
19/// must derive from <see cref="System.IdentityModel.Tokens.TokenReplayCache"/>.
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (2)
1628/// <see cref="TokenReplayCache" />. 1635/// <exception cref="SecurityTokenReplayDetectedException">The token is found in the <see cref="TokenReplayCache" />.</exception>
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (2)
765/// Throws if a token is detected as being replayed. If the token is not found it is added to the <see cref="TokenReplayCache" />. 771/// <exception cref="SecurityTokenReplayDetectedException">If the token is found in the <see cref="TokenReplayCache" />.</exception>