PropertyDictionary.Contains メソッド

定義

辞書に特定のキーが含まれているかどうかを判定します。

オーバーロード

名前 説明
Contains(ISfcProperty)

特定の対象を収容する価値を決定します。

Contains(KeyValuePair<String,Object>)

PropertyDictionaryのオブジェクトを提供します。

Contains(String)

辞書に特定のプロパティ名が含まれているかどうかを判定します。

Contains<T>(String)

辞書に特定の名前が含まれているかどうかを示す値を示します。

Contains(ISfcProperty)

特定の対象を収容する価値を決定します。

public:
 virtual bool Contains(Microsoft::SqlServer::Management::Sdk::Sfc::ISfcProperty ^ property);
public bool Contains(Microsoft.SqlServer.Management.Sdk.Sfc.ISfcProperty property);
abstract member Contains : Microsoft.SqlServer.Management.Sdk.Sfc.ISfcProperty -> bool
override this.Contains : Microsoft.SqlServer.Management.Sdk.Sfc.ISfcProperty -> bool
Public Function Contains (property As ISfcProperty) As Boolean

パラメーター

property
ISfcProperty

true その財産が含みうる価値について;それ以外は false

返品

true PropertyDictionaryに指定されたオブジェクトを示す値がある場合、それ以外は false

実装

適用対象

Contains(KeyValuePair<String,Object>)

PropertyDictionaryのオブジェクトを提供します。

public:
 virtual bool Contains(System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> value);
public bool Contains(System.Collections.Generic.KeyValuePair<string,object> value);
abstract member Contains : System.Collections.Generic.KeyValuePair<string, obj> -> bool
override this.Contains : System.Collections.Generic.KeyValuePair<string, obj> -> bool
Public Function Contains (value As KeyValuePair(Of String, Object)) As Boolean

パラメーター

value
KeyValuePair<String,Object>

辞書の文字列の価値です。

返品

true もしその物体がその性質の中に見つかれば、それ以外は false

実装

適用対象

Contains(String)

辞書に特定のプロパティ名が含まれているかどうかを判定します。

public:
 virtual bool Contains(System::String ^ propertyName);
public bool Contains(string propertyName);
abstract member Contains : string -> bool
override this.Contains : string -> bool
Public Function Contains (propertyName As String) As Boolean

パラメーター

propertyName
String

コントロールのプロパティ名を表す文字列です。

返品

true 対象にアイテムが含まれている場合、それ以外は false

実装

適用対象

Contains<T>(String)

辞書に特定の名前が含まれているかどうかを示す値を示します。

public:
generic <typename T>
 virtual bool Contains(System::String ^ name);
public bool Contains<T>(string name);
abstract member Contains : string -> bool
override this.Contains : string -> bool
Public Function Contains(Of T) (name As String) As Boolean

型パラメーター

T

一般的な物です。

パラメーター

name
String

プロパティの名前。

返品

true 辞書に特定のキーが含まれている場合、それ以外は false

実装

適用対象