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 です。

戻り値

指定されたオブジェクトを示す値が PropertyDictionary 内にある場合は true、それ以外の場合は 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 です。

実装

適用対象