Share via


PropertyDictionary Constructors

Definition

Initializes a new instance of the PropertyDictionary class.

Overloads

PropertyDictionary()

Initializes a new instance of the PropertyDictionary class with the default property values.

PropertyDictionary(ISfcPropertyProvider)

Initializes a new instance of the PropertyDictionary class with the specified provider.

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

Initializes a new instance of the PropertyDictionary class with the specified properties.

PropertyDictionary()

Initializes a new instance of the PropertyDictionary class with the default property values.

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

Applies to

PropertyDictionary(ISfcPropertyProvider)

Initializes a new instance of the PropertyDictionary class with the specified provider.

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)

Parameters

provider
ISfcPropertyProvider

An interface that manages the PropertyDictionary.

Applies to

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

Initializes a new instance of the PropertyDictionary class with the specified properties.

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)))

Parameters

properties
IEnumerable<KeyValuePair<String,Object>>

An interface that enumerates the KeyValuePair of the specified string.

Applies to