共用方式為


RsaKeyIdentifierClause.Matches 方法

定義

傳回值,這個值會指出這個執行個體的金鑰識別碼是否相等於指定的物件。

多載

Matches(SecurityKeyIdentifierClause)

傳回值,這個值會指出這個執行個體的金鑰識別碼是否相等於指定的金鑰識別碼子句。

Matches(RSA)

傳回值,這個值會指出這個執行個體的金鑰識別碼是否與指定的 RSA 演算法相符。

Matches(SecurityKeyIdentifierClause)

傳回值,這個值會指出這個執行個體的金鑰識別碼是否相等於指定的金鑰識別碼子句。

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

參數

keyIdentifierClause
SecurityKeyIdentifierClause

要相比較的 SecurityKeyIdentifierClause

傳回

如果 keyIdentifierClause 的型別是 RsaKeyIdentifierClause,而且 GetModulus()GetExponent() 方法為 keyIdentifierClause 參數傳回的陣列與目前執行個體相同,則為 true,否則為 false

適用於

Matches(RSA)

傳回值,這個值會指出這個執行個體的金鑰識別碼是否與指定的 RSA 演算法相符。

public:
 bool Matches(System::Security::Cryptography::RSA ^ rsa);
public bool Matches (System.Security.Cryptography.RSA rsa);
override this.Matches : System.Security.Cryptography.RSA -> bool
Public Function Matches (rsa As RSA) As Boolean

參數

rsa
RSA

RSA,表示 RSA 演算法。

傳回

如果 rsa 參數的 ExponentModulus 欄位符合 GetModulus()GetExponent() 方法為目前執行個體傳回的值,則為 true,否則為 false

適用於