5 references to Matches
System.ServiceModel.Primitives (5)
System\IdentityModel\Tokens\BinaryKeyIdentifierClause.cs (1)
54return ReferenceEquals(this, that) || (that != null && that.Matches(_identificationData));
System\IdentityModel\Tokens\EncryptedKeyIdentifierClause.cs (1)
60return Matches(encryptedKey) && _encryptionMethod == encryptionMethod && CarriedKeyName == carriedKeyName;
System\IdentityModel\Tokens\X509RawDataKeyIdentifierClause.cs (1)
72return Matches(GetRawData(certificate));
System\IdentityModel\Tokens\X509ThumbprintKeyIdentifierClause.cs (1)
50return Matches(GetHash(certificate));
System\ServiceModel\Security\BinarySecretKeyIdentifierClause.cs (1)
51return ReferenceEquals(this, that) || (that != null && that.Matches(GetRawBuffer()));