Saml2AssertionKeyIdentifierClause.Matches 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
判斷兩個金鑰識別項子句是否對等。
多載
Matches(SecurityKeyIdentifierClause) |
傳回值,這個值會指出這個執行個體的金鑰識別碼是否相等於指定的金鑰識別碼子句。 |
Matches(String, SecurityKeyIdentifierClause) |
傳回值,這個值會指出判斷提示的金鑰識別碼是否相等於指定的金鑰識別碼子句。 |
Matches(SecurityKeyIdentifierClause)
傳回值,這個值會指出這個執行個體的金鑰識別碼是否相等於指定的金鑰識別碼子句。
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
參數
- keyIdentifierClause
- SecurityKeyIdentifierClause
要相比較的 SecurityKeyIdentifierClause。
傳回
如果 keyIdentifierClause
是與目前執行個體相同的執行個體,則為 true
,否則為 false
。
適用於
Matches(String, SecurityKeyIdentifierClause)
傳回值,這個值會指出判斷提示的金鑰識別碼是否相等於指定的金鑰識別碼子句。
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
參數
- assertionId
- String
判斷提示的 ID。
- keyIdentifierClause
- SecurityKeyIdentifierClause
要相比較的 SecurityKeyIdentifierClause。
傳回
如果 assertionId
符合 keyIdentifierClause
的 Id 屬性則為 true
,否則為 false
。
例外狀況
assertionId
為 null
或空字串。