Saml2AssertionKeyIdentifierClause.Matches Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Určuje, zda jsou ekvivalentní dvě klauzule identifikátoru klíče.
Přetížení
Matches(SecurityKeyIdentifierClause) |
Vrátí hodnotu, která označuje, zda je identifikátor klíče pro tuto instanci ekvivalentní zadané klauzuli identifikátoru klíče. |
Matches(String, SecurityKeyIdentifierClause) |
Vrátí hodnotu, která označuje, zda je identifikátor klíče pro kontrolní výraz ekvivalentní zadané klauzuli identifikátoru klíče. |
Matches(SecurityKeyIdentifierClause)
Vrátí hodnotu, která označuje, zda je identifikátor klíče pro tuto instanci ekvivalentní zadané klauzuli identifikátoru klíče.
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
Parametry
- keyIdentifierClause
- SecurityKeyIdentifierClause
A SecurityKeyIdentifierClause pro porovnání s.
Návraty
true
pokud keyIdentifierClause
je stejná instance jako aktuální instance, false
v opačném případě .
Platí pro
Matches(String, SecurityKeyIdentifierClause)
Vrátí hodnotu, která označuje, zda je identifikátor klíče pro kontrolní výraz ekvivalentní zadané klauzuli identifikátoru klíče.
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
Parametry
- assertionId
- String
ID kontrolního výrazu.
- keyIdentifierClause
- SecurityKeyIdentifierClause
A SecurityKeyIdentifierClause pro porovnání s.
Návraty
true
pokud assertionId
odpovídá Id vlastnosti ; keyIdentifierClause
v opačném případě . false
Výjimky
assertionId
je null
nebo prázdný řetězec.