SfcReferenceCollection<K, T, S>.ContainsKey メソッド
指定したキーを持つ要素が SfcReferenceCollection<K, T, S> 内に存在するかどうかを示します。
名前空間: Microsoft.SqlServer.Management.Sdk.Sfc
アセンブリ: Microsoft.SqlServer.Management.Sdk.Sfc (Microsoft.SqlServer.Management.Sdk.Sfc.dll)
構文
'宣言
Public Function ContainsKey ( _
key As K _
) As Boolean
'使用
Dim instance As SfcReferenceCollection
Dim key As K
Dim returnValue As Boolean
returnValue = instance.ContainsKey(key)
public bool ContainsKey(
K key
)
public:
virtual bool ContainsKey(
K key
) sealed
abstract ContainsKey :
key:'K -> bool
override ContainsKey :
key:'K -> bool
public final function ContainsKey(
key : K
) : boolean
パラメーター
- key
型: K
SfcReferenceCollection<K, T, S> から検索するキーです。
戻り値
型: System.Boolean
指定されたキーを持つ要素が SfcReferenceCollection<K, T, S> に含まれている場合は true、含まれていない場合は false です。
実装
IReadOnlyDictionary<K, T>.ContainsKey(K)