다음을 통해 공유


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를 열거하는 인터페이스입니다.

적용 대상