7 references to Matches
System.IdentityModel (1)
System\ServiceModel\Security\SecurityContextKeyIdentifierClause.cs (1)
55return ReferenceEquals(this, that) || (that != null && that.Matches(this.contextId, this.generation));
System.ServiceModel (6)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
2792return incomingTokenIdentifier != null && incomingTokenIdentifier.Matches(sessionId, null);
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (3)
754if (sct != null && sctSkiClause.Matches(sct.ContextId, sct.KeyGeneration)) 972if (sct != null && skiClause.Matches(sct.ContextId, sct.KeyGeneration)) 984if (sct != null && skiClause.Matches(sct.ContextId, sct.KeyGeneration))
System\ServiceModel\Security\SecuritySessionServerSettings.cs (1)
2542return incomingTokenIdentifier != null && incomingTokenIdentifier.Matches(this.securityContextTokenId, null);
System\ServiceModel\Security\Tokens\SecurityContextSecurityToken.cs (1)
302return sctKeyIdentifierClause.Matches(this.contextId, this.keyGeneration);