SamlAssertionKeyIdentifierClause.Matches Method

Definition

Determines whether the specified key identifier is the same as the current instance.

Overloads

Matches(SecurityKeyIdentifierClause)

Determines whether the specified key identifier is the same as the current instance.

Matches(String)

Determines whether the specified SAML assertion identifier is the same as the current instance.

Matches(String, SecurityKeyIdentifierClause)

Matches(SecurityKeyIdentifierClause)

Source:
SamlAssertionKeyIdentifierClause.cs
Source:
SamlAssertionKeyIdentifierClause.cs
Source:
SamlAssertionKeyIdentifierClause.cs

Determines whether the specified key identifier is the same as the current instance.

public:
 override bool Matches(System::IdentityModel::Tokens::SecurityKeyIdentifierClause ^ keyIdentifierClause);
public override bool Matches (System.IdentityModel.Tokens.SecurityKeyIdentifierClause keyIdentifierClause);
abstract member Matches : System.IdentityModel.Tokens.SecurityKeyIdentifierClause -> bool
override this.Matches : System.IdentityModel.Tokens.SecurityKeyIdentifierClause -> bool
override this.Matches : System.IdentityModel.Tokens.SecurityKeyIdentifierClause -> bool
Public Overrides Function Matches (keyIdentifierClause As SecurityKeyIdentifierClause) As Boolean

Parameters

keyIdentifierClause
SecurityKeyIdentifierClause

A SecurityKeyIdentifierClause to be compared.

Returns

true when the specified key identifier is the same as the current instance; otherwise, false.

Remarks

This Matches overload returns a value of true when either of the following is true:

  • The AssertionId property of the keyIdentifierClause parameter has the same value as the current instance's AssertionId property.

  • The keyIdentifierClause parameter and this instance are the same instance.

Applies to

Matches(String)

Determines whether the specified SAML assertion identifier is the same as the current instance.

public:
 bool Matches(System::String ^ assertionId);
public bool Matches (string assertionId);
override this.Matches : string -> bool
Public Function Matches (assertionId As String) As Boolean

Parameters

assertionId
String

The SAML assertion identifier to be compared.

Returns

true when assertionId has the same value as the current instance's AssertionId property; otherwise, false.

Remarks

The comparison is case sensitive.

Applies to

Matches(String, SecurityKeyIdentifierClause)

Source:
SamlAssertionKeyIdentifierClause.cs
Source:
SamlAssertionKeyIdentifierClause.cs
Source:
SamlAssertionKeyIdentifierClause.cs
public:
 static bool Matches(System::String ^ assertionId, System::IdentityModel::Tokens::SecurityKeyIdentifierClause ^ keyIdentifierClause);
public static bool Matches (string assertionId, System.IdentityModel.Tokens.SecurityKeyIdentifierClause keyIdentifierClause);
static member Matches : string * System.IdentityModel.Tokens.SecurityKeyIdentifierClause -> bool
Public Shared Function Matches (assertionId As String, keyIdentifierClause As SecurityKeyIdentifierClause) As Boolean

Parameters

assertionId
String
keyIdentifierClause
SecurityKeyIdentifierClause

Returns

Applies to