次の方法で共有


SamlAssertionKeyIdentifierClause.Matches メソッド

定義

指定したキー識別子が現在のインスタンスと同じかどうかを確認します。

オーバーロード

Matches(SecurityKeyIdentifierClause)

指定したキー識別子が現在のインスタンスと同じかどうかを確認します。

Matches(String)

指定した SAML アサーション識別子が現在のインスタンスと同じかどうかを確認します。

Matches(String, SecurityKeyIdentifierClause)

Matches(SecurityKeyIdentifierClause)

ソース:
SamlAssertionKeyIdentifierClause.cs
ソース:
SamlAssertionKeyIdentifierClause.cs
ソース:
SamlAssertionKeyIdentifierClause.cs

指定したキー識別子が現在のインスタンスと同じかどうかを確認します。

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

戻り値

指定したキー識別子が現在のインスタンスと同じ場合は true、それ以外の場合は false

注釈

この Matches オーバーロードは、次のいずれかが true の場合にtrue 値を返します。

  • AssertionId パラメーターの keyIdentifierClause プロパティの値が、現在のインスタンスの AssertionId プロパティの値と同じである。

  • keyIdentifierClause パラメーターとこのインスタンスが同じインスタンスである。

適用対象

Matches(String)

指定した SAML アサーション識別子が現在のインスタンスと同じかどうかを確認します。

public:
 bool Matches(System::String ^ assertionId);
public bool Matches (string assertionId);
override this.Matches : string -> bool
Public Function Matches (assertionId As String) As Boolean

パラメーター

assertionId
String

比較対象の SAML アサーション識別子。

戻り値

assertionId の値が現在のインスタンスの AssertionId プロパティの値と同じ場合は true、それ以外の場合は false

注釈

比較では、大文字と小文字を区別します。

適用対象

Matches(String, SecurityKeyIdentifierClause)

ソース:
SamlAssertionKeyIdentifierClause.cs
ソース:
SamlAssertionKeyIdentifierClause.cs
ソース:
SamlAssertionKeyIdentifierClause.cs
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
keyIdentifierClause
SecurityKeyIdentifierClause

戻り値

適用対象