다음을 통해 공유


Saml2AssertionKeyIdentifierClause.Matches 메서드

정의

두 키 식별자 절이 동일한지 여부를 확인합니다.

오버로드

Matches(SecurityKeyIdentifierClause)

이 인스턴스의 키 식별자가 지정된 키 식별자 절과 동일한지 여부를 나타내는 값을 반환합니다.

Matches(String, SecurityKeyIdentifierClause)

어설션의 키 식별자가 지정된 키 식별자 절과 동일한지 여부를 나타내는 값을 반환합니다.

Matches(SecurityKeyIdentifierClause)

Source:
Saml2AssertionKeyIdentifierClause.cs
Source:
Saml2AssertionKeyIdentifierClause.cs
Source:
Saml2AssertionKeyIdentifierClause.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입니다.

반환

keyIdentifierClause가 현재 인스턴스와 같은 인스턴스이면 true이고, 그렇지 않으면 false입니다.

적용 대상

Matches(String, SecurityKeyIdentifierClause)

Source:
Saml2AssertionKeyIdentifierClause.cs
Source:
Saml2AssertionKeyIdentifierClause.cs
Source:
Saml2AssertionKeyIdentifierClause.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

어설션의 ID입니다.

keyIdentifierClause
SecurityKeyIdentifierClause

비교할 SecurityKeyIdentifierClause입니다.

반환

assertionIdkeyIdentifierClauseId 속성과 일치하면 true이고, 그렇지 않으면 false입니다.

예외

assertionIdnull 또는 빈 문자열인 경우

적용 대상