SecurityKeyIdentifier.TryFind<TClause>(TClause) 方法

定义

搜索指定类型的密钥标识符子句,并返回一个值,指示是否可以找到该类型的子句。 如果找到一个类型,则在 out 参数中返回它。

public:
generic <typename TClause>
 where TClause : System::IdentityModel::Tokens::SecurityKeyIdentifierClause bool TryFind([Runtime::InteropServices::Out] TClause % clause);
public bool TryFind<TClause> (out TClause clause) where TClause : System.IdentityModel.Tokens.SecurityKeyIdentifierClause;
member this.TryFind : 'Clause -> bool (requires 'Clause :> System.IdentityModel.Tokens.SecurityKeyIdentifierClause)
Public Function TryFind(Of TClause As SecurityKeyIdentifierClause) (ByRef clause As TClause) As Boolean

类型参数

TClause

一个 SecurityKeyIdentifierClause,表示要在集合中搜索的密钥标识符子句的类型。

参数

clause
TClause

当此方法返回时,包含一个具有在 SecurityKeyIdentifierClause 参数中指定的类型的 TClause,但前提是可以在集合中找到该类型的子句。 此参数未经初始化即被传递。

返回

如果集合中存在具有 true 参数中指定的类型的密钥标识符子句,则为 TClause;否则为 false

注解

如果集合中不存在具有 TClause 参数中指定的类型的密钥标识符子句,则 clause out 参数为 null

适用于