LocalIdKeyIdentifierClause.Matches 方法

定义

返回一个值,该值指示此实例的密钥标识符是否等效于指定的对象。

重载

Matches(SecurityKeyIdentifierClause)

返回一个值,该值指示此实例的密钥标识符是否等效于指定的密钥标识符子句。

Matches(String, Type)

返回一个值,该值指示此实例的密钥标识符是否等效于指定的引用和类型。

Matches(SecurityKeyIdentifierClause)

Source:
LocalIdKeyIdentifierClause.cs
Source:
LocalIdKeyIdentifierClause.cs
Source:
LocalIdKeyIdentifierClause.cs

返回一个值,该值指示此实例的密钥标识符是否等效于指定的密钥标识符子句。

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

返回

如果 keyIdentifierClauseLocalIdKeyIdentifierClause 类型并且 LocalIdOwnerType 属性的值与当前实例相匹配,则为 true;否则为 false。 有关详细信息,请参见备注。

注解

满足以下任一条件时,会发生 OwnerType 属性匹配的情况:

  • OwnerType 参数所表示的实例的 keyIdentifierClause 属性值为 null

  • 当前实例的 OwnerType 属性值为 null

  • 两个实例的 OwnerType 属性相同。

适用于

Matches(String, Type)

Source:
LocalIdKeyIdentifierClause.cs
Source:
LocalIdKeyIdentifierClause.cs
Source:
LocalIdKeyIdentifierClause.cs

返回一个值,该值指示此实例的密钥标识符是否等效于指定的引用和类型。

public:
 bool Matches(System::String ^ localId, Type ^ ownerType);
public bool Matches (string localId, Type ownerType);
override this.Matches : string * Type -> bool
Public Function Matches (localId As String, ownerType As Type) As Boolean

参数

localId
String

当前 SOAP 消息中 XML 元素的 wsu:Id 属性值。

ownerType
Type

一个 Type,它是 localId 参数所引用的安全令牌的类型。

返回

如果 localIdownerType 参数与 LocalIdOwnerType 属性的值相匹配,则为 true;否则为 false

注解

满足以下任一条件时,会发生 OwnerType 属性匹配的情况:

  • 当前实例的 OwnerType 属性值为 null

  • ownerType 参数的值为 null

  • OwnerType 属性值与当前方法的 ownerType 参数相同。

适用于