10 overrides of MatchesKeyIdentifierClause
System.IdentityModel (9)
System\IdentityModel\Tokens\EncryptedSecurityToken.cs (1)
79public override bool MatchesKeyIdentifierClause(SecurityKeyIdentifierClause keyIdentifierClause)
System\IdentityModel\Tokens\GenericXmlSecurityToken.cs (1)
177public override bool MatchesKeyIdentifierClause(SecurityKeyIdentifierClause keyIdentifierClause)
System\IdentityModel\Tokens\KerberosReceiverSecurityToken.cs (1)
303public override bool MatchesKeyIdentifierClause(SecurityKeyIdentifierClause keyIdentifierClause)
System\IdentityModel\Tokens\KerberosRequestorSecurityToken.cs (1)
243public override bool MatchesKeyIdentifierClause(SecurityKeyIdentifierClause keyIdentifierClause)
System\IdentityModel\Tokens\RsaSecurityToken.cs (1)
199public override bool MatchesKeyIdentifierClause(SecurityKeyIdentifierClause keyIdentifierClause)
System\IdentityModel\Tokens\Saml2SecurityToken.cs (1)
126public override bool MatchesKeyIdentifierClause(SecurityKeyIdentifierClause keyIdentifierClause)
System\IdentityModel\Tokens\SamlSecurityToken.cs (1)
107public override bool MatchesKeyIdentifierClause(SecurityKeyIdentifierClause keyIdentifierClause)
System\IdentityModel\Tokens\X509SecurityToken.cs (1)
147public override bool MatchesKeyIdentifierClause(SecurityKeyIdentifierClause keyIdentifierClause)
System\ServiceModel\Security\Tokens\WrappedKeySecurityToken.cs (1)
232public override bool MatchesKeyIdentifierClause(SecurityKeyIdentifierClause keyIdentifierClause)
System.ServiceModel (1)
System\ServiceModel\Security\Tokens\SecurityContextSecurityToken.cs (1)
298public override bool MatchesKeyIdentifierClause(SecurityKeyIdentifierClause keyIdentifierClause)
14 references to MatchesKeyIdentifierClause
System.IdentityModel (8)
System\IdentityModel\Selectors\SecurityTokenResolver.cs (1)
201if (this.tokens[i].MatchesKeyIdentifierClause(keyIdentifierClause))
System\IdentityModel\Tokens\EncryptedSecurityToken.cs (1)
81return _realToken.MatchesKeyIdentifierClause(keyIdentifierClause);
System\IdentityModel\Tokens\KerberosReceiverSecurityToken.cs (1)
309return base.MatchesKeyIdentifierClause(keyIdentifierClause);
System\IdentityModel\Tokens\KerberosRequestorSecurityToken.cs (1)
249return base.MatchesKeyIdentifierClause(keyIdentifierClause);
System\IdentityModel\Tokens\Saml2SecurityToken.cs (1)
129|| base.MatchesKeyIdentifierClause(keyIdentifierClause);
System\IdentityModel\Tokens\SecurityToken.cs (1)
41if (this.SecurityKeys.Count != 0 && MatchesKeyIdentifierClause(keyIdentifierClause))
System\IdentityModel\Tokens\X509SecurityToken.cs (1)
166return base.MatchesKeyIdentifierClause(keyIdentifierClause);
System\ServiceModel\Security\Tokens\WrappedKeySecurityToken.cs (1)
238return base.MatchesKeyIdentifierClause(keyIdentifierClause);
System.ServiceModel (6)
System\ServiceModel\Security\ReceiveSecurityHeaderElementManager.cs (1)
350if (token.MatchesKeyIdentifierClause(strClause))
System\ServiceModel\Security\SecurityHeaderTokenResolver.cs (2)
144return token.MatchesKeyIdentifierClause(localClause); 222(derivedKeyToken.TokenToDerive.MatchesKeyIdentifierClause(keyIdentifierClause)))
System\ServiceModel\Security\Tokens\SecurityContextSecurityToken.cs (1)
304return base.MatchesKeyIdentifierClause(keyIdentifierClause);
System\ServiceModel\Security\Tokens\SecurityTokenParameters.cs (2)
162result = token.MatchesKeyIdentifierClause(keyIdentifierClause); 165result = token.MatchesKeyIdentifierClause(keyIdentifierClause);