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 パラメーターは null になります。

適用対象