次の方法で共有


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

戻り値

keyIdentifierClauseRsaKeyIdentifierClause 型であり、keyIdentifierClause パラメーターに対して GetModulus() メソッドと GetExponent() メソッドによって返された配列が現在のインスタンスと同じである場合は 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 パラメーターの Exponent フィールドと Modulus フィールドが、現在のインスタンスの GetModulus() メソッドと GetExponent() メソッドから返された値と一致する場合は true、それ以外の場合は false

適用対象