Saml2AssertionKeyIdentifierClause.Matches Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether two key identifier clauses are equivalent.
Overloads
Matches(SecurityKeyIdentifierClause) |
Returns a value that indicates whether the key identifier for this instance is equivalent to the specified key identifier clause. |
Matches(String, SecurityKeyIdentifierClause) |
Returns a value that indicates whether the key identifier for an assertion is equivalent to the specified key identifier clause. |
Matches(SecurityKeyIdentifierClause)
Returns a value that indicates whether the key identifier for this instance is equivalent to the specified key identifier clause.
public:
override bool Matches(System::IdentityModel::Tokens::SecurityKeyIdentifierClause ^ keyIdentifierClause);
public override bool Matches (System.IdentityModel.Tokens.SecurityKeyIdentifierClause keyIdentifierClause);
override this.Matches : System.IdentityModel.Tokens.SecurityKeyIdentifierClause -> bool
Public Overrides Function Matches (keyIdentifierClause As SecurityKeyIdentifierClause) As Boolean
Parameters
- keyIdentifierClause
- SecurityKeyIdentifierClause
A SecurityKeyIdentifierClause to compare to.
Returns
true
if keyIdentifierClause
is the same instance as the current instance; otherwise, false
.
Applies to
Matches(String, SecurityKeyIdentifierClause)
Returns a value that indicates whether the key identifier for an assertion is equivalent to the specified key identifier clause.
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
The ID of the assertion.
- keyIdentifierClause
- SecurityKeyIdentifierClause
A SecurityKeyIdentifierClause to compare to.
Returns
true
if assertionId
matches the Id property of keyIdentifierClause
; otherwise, false
.
Exceptions
assertionId
is null
or an empty string.