Saml2AssertionKeyIdentifierClause.Matches Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Determina se due clausole dell'identificatore di chiave sono equivalenti.
Overload
Matches(SecurityKeyIdentifierClause) |
Restituisce un valore che indica se l'identificatore di chiave per l'istanza è equivalente alla clausola identificatore di chiave specificata. |
Matches(String, SecurityKeyIdentifierClause) |
Restituisce un valore che indica se l'identificatore di chiave di un'asserzione è equivalente alla clausola dell'identificatore di chiave specificata. |
Matches(SecurityKeyIdentifierClause)
Restituisce un valore che indica se l'identificatore di chiave per l'istanza è equivalente alla clausola identificatore di chiave specificata.
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
Parametri
- keyIdentifierClause
- SecurityKeyIdentifierClause
Oggetto SecurityKeyIdentifierClause con cui eseguire il confronto.
Restituisce
true
se keyIdentifierClause
è la stessa istanza dell'istanza corrente. In caso contrario, false
.
Si applica a
Matches(String, SecurityKeyIdentifierClause)
Restituisce un valore che indica se l'identificatore di chiave di un'asserzione è equivalente alla clausola dell'identificatore di chiave specificata.
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
Parametri
- assertionId
- String
ID dell'asserzione.
- keyIdentifierClause
- SecurityKeyIdentifierClause
Oggetto SecurityKeyIdentifierClause con cui eseguire il confronto.
Restituisce
true
se assertionId
corrisponde alla proprietà Id di keyIdentifierClause
; in caso contrario, false
.
Eccezioni
assertionId
è null
o una stringa vuota.