7 overrides of ValidateToken
System.IdentityModel (7)
System\IdentityModel\Tokens\KerberosSecurityTokenHandler.cs (1)
69public override ReadOnlyCollection<ClaimsIdentity> ValidateToken(SecurityToken token)
System\IdentityModel\Tokens\RsaSecurityTokenHandler.cs (1)
147public override ReadOnlyCollection<ClaimsIdentity> ValidateToken(SecurityToken token)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (1)
311public override ReadOnlyCollection<ClaimsIdentity> ValidateToken(SecurityToken token)
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (1)
957public override ReadOnlyCollection<ClaimsIdentity> ValidateToken(SecurityToken token)
System\IdentityModel\Tokens\SessionSecurityTokenHandler.cs (1)
578public override ReadOnlyCollection<ClaimsIdentity> ValidateToken(SecurityToken token)
System\IdentityModel\Tokens\WindowsUserNameSecurityTokenHandler.cs (1)
53public override ReadOnlyCollection<ClaimsIdentity> ValidateToken(SecurityToken token)
System\IdentityModel\Tokens\X509SecurityTokenHandler.cs (1)
496public override ReadOnlyCollection<ClaimsIdentity> ValidateToken(SecurityToken token)
4 references to ValidateToken
System.IdentityModel (1)
System\IdentityModel\Tokens\SecurityTokenHandlerCollection.cs (1)
367return handler.ValidateToken(token);
System.ServiceModel (3)
System\ServiceModel\Security\IdentityModelServiceAuthorizationManager.cs (1)
474identities.AddRange(tokenHandler.ValidateToken(kerberosTokenSpecification.SecurityToken));
System\ServiceModel\Security\SecurityTokenAuthenticatorAdapter.cs (1)
54subjectCollection = _securityTokenHandler.ValidateToken(token);
System\ServiceModel\Security\WrappedUserNameSecurityTokenAuthenticator.cs (1)
59identities = _wrappedUserNameSecurityTokenHandler.ValidateToken( token );