Sdílet prostřednictvím


RsaKeyIdentifierClause.Matches Metoda

Definice

Vrátí hodnotu, která označuje, zda je identifikátor klíče pro tuto instanci ekvivalentní zadanému objektu.

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(RSA)

Vrátí hodnotu, která označuje, zda identifikátor klíče pro tuto instanci odpovídá zadanému algoritmu RSA.

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);
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 typu RsaKeyIdentifierClause a pole vrácená metodami GetModulus() a GetExponent() pro keyIdentifierClause parametr jsou identická s aktuální instancí, jinak false.

Platí pro

Matches(RSA)

Vrátí hodnotu, která označuje, zda identifikátor klíče pro tuto instanci odpovídá zadanému algoritmu 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

Parametry

rsa
RSA

Představuje RSA algoritmus RSA.

Návraty

trueExponent pokud pole a Modulus parametru rsa odpovídají hodnotám vráceným metodami GetModulus() a GetExponent() pro aktuální instanci, v opačném případě false.

Platí pro