PropertyDictionary コンストラクター

定義

PropertyDictionary クラスの新しいインスタンスを初期化します。

オーバーロード

PropertyDictionary()

PropertyDictionary クラスの新しいインスタンスを既定のプロパティ値で初期化します。

PropertyDictionary(ISfcPropertyProvider)

指定されたプロバイダーを使用して、PropertyDictionary クラスの新しいインスタンスを初期化します。

PropertyDictionary(IEnumerable<KeyValuePair<String,Object>>)

指定されたプロパティを使用して、PropertyDictionary クラスの新しいインスタンスを初期化します。

PropertyDictionary()

PropertyDictionary クラスの新しいインスタンスを既定のプロパティ値で初期化します。

public:
 PropertyDictionary();
public PropertyDictionary ();
Public Sub New ()

適用対象

PropertyDictionary(ISfcPropertyProvider)

指定されたプロバイダーを使用して、PropertyDictionary クラスの新しいインスタンスを初期化します。

public:
 PropertyDictionary(Microsoft::SqlServer::Management::Sdk::Sfc::ISfcPropertyProvider ^ provider);
public PropertyDictionary (Microsoft.SqlServer.Management.Sdk.Sfc.ISfcPropertyProvider provider);
new Microsoft.SqlServer.Management.Data.PropertyDictionary : Microsoft.SqlServer.Management.Sdk.Sfc.ISfcPropertyProvider -> Microsoft.SqlServer.Management.Data.PropertyDictionary
Public Sub New (provider As ISfcPropertyProvider)

パラメーター

provider
ISfcPropertyProvider

PropertyDictionary を管理するインターフェイスです。

適用対象

PropertyDictionary(IEnumerable<KeyValuePair<String,Object>>)

指定されたプロパティを使用して、PropertyDictionary クラスの新しいインスタンスを初期化します。

public:
 PropertyDictionary(System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> ^ properties);
public PropertyDictionary (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object>> properties);
new Microsoft.SqlServer.Management.Data.PropertyDictionary : seq<System.Collections.Generic.KeyValuePair<string, obj>> -> Microsoft.SqlServer.Management.Data.PropertyDictionary
Public Sub New (properties As IEnumerable(Of KeyValuePair(Of String, Object)))

パラメーター

properties
IEnumerable<KeyValuePair<String,Object>>

指定された文字列の KeyValuePair を列挙するインターフェイスです。

適用対象