PropertyData 생성자

정의

PropertyData 클래스의 새 인스턴스를 초기화합니다.

오버로드

PropertyData(ISfcProperty)

지정한 속성을 포함하는 PropertyData 클래스의 새 인스턴스를 초기화합니다.

PropertyData(String, Object)

지정된 이름 및 값을 사용하여 PropertyData 클래스의 새 인스턴스를 초기화합니다.

PropertyData(String, Type)

지정한 이름 및 유형을 포함하는 PropertyData 클래스의 새 인스턴스를 초기화합니다.

PropertyData(String, Object, Boolean)

지정한 이름, 값 및 사용 설정을 포함하는 PropertyData 클래스의 새 인스턴스를 초기화합니다.

PropertyData(String, Type, Boolean)

지정한 이름, 유형 및 사용 설정을 포함하는 PropertyData 클래스의 새 인스턴스를 초기화합니다.

PropertyData(String, Type, Object)

지정한 이름, 유형 및 값을 포함하는 PropertyData 클래스의 새 인스턴스를 초기화합니다.

PropertyData(String, Type, Object, Boolean)

지정한 이름, 유형, 값 및 사용 설정을 포함하는 PropertyData 클래스의 새 인스턴스를 초기화합니다.

PropertyData(ISfcProperty)

지정한 속성을 포함하는 PropertyData 클래스의 새 인스턴스를 초기화합니다.

public:
 PropertyData(Microsoft::SqlServer::Management::Sdk::Sfc::ISfcProperty ^ property);
public PropertyData (Microsoft.SqlServer.Management.Sdk.Sfc.ISfcProperty property);
new Microsoft.SqlServer.Management.Data.PropertyData : Microsoft.SqlServer.Management.Sdk.Sfc.ISfcProperty -> Microsoft.SqlServer.Management.Data.PropertyData
Public Sub New (property As ISfcProperty)

매개 변수

property
ISfcProperty

특정 속성을 나타내는 속성 값입니다.

적용 대상

PropertyData(String, Object)

지정된 이름 및 값을 사용하여 PropertyData 클래스의 새 인스턴스를 초기화합니다.

public:
 PropertyData(System::String ^ name, System::Object ^ value);
public PropertyData (string name, object value);
new Microsoft.SqlServer.Management.Data.PropertyData : string * obj -> Microsoft.SqlServer.Management.Data.PropertyData
Public Sub New (name As String, value As Object)

매개 변수

name
String

컨트롤의 이름을 나타내는 문자열입니다.

value
Object

<를 나타내는 참조로 전달되는 개체입니다. 매개 변수가 수행하거나 나타내는>에 대한 설명입니다.

적용 대상

PropertyData(String, Type)

지정한 이름 및 유형을 포함하는 PropertyData 클래스의 새 인스턴스를 초기화합니다.

public:
 PropertyData(System::String ^ name, Type ^ type);
public PropertyData (string name, Type type);
new Microsoft.SqlServer.Management.Data.PropertyData : string * Type -> Microsoft.SqlServer.Management.Data.PropertyData
Public Sub New (name As String, type As Type)

매개 변수

name
String

컨트롤의 이름을 나타내는 문자열입니다.

type
Type

지정한 속성 유형입니다.

적용 대상

PropertyData(String, Object, Boolean)

지정한 이름, 값 및 사용 설정을 포함하는 PropertyData 클래스의 새 인스턴스를 초기화합니다.

public:
 PropertyData(System::String ^ name, System::Object ^ value, bool enabled);
public PropertyData (string name, object value, bool enabled);
new Microsoft.SqlServer.Management.Data.PropertyData : string * obj * bool -> Microsoft.SqlServer.Management.Data.PropertyData
Public Sub New (name As String, value As Object, enabled As Boolean)

매개 변수

name
String

속성을 나타내는 문자열 입력입니다.

value
Object

속성에서 사용할 개체입니다.

enabled
Boolean

속성을 사용할 수 있으면 true이고, 그렇지 않으면 false입니다.

적용 대상

PropertyData(String, Type, Boolean)

지정한 이름, 유형 및 사용 설정을 포함하는 PropertyData 클래스의 새 인스턴스를 초기화합니다.

public:
 PropertyData(System::String ^ name, Type ^ type, bool enabled);
public PropertyData (string name, Type type, bool enabled);
new Microsoft.SqlServer.Management.Data.PropertyData : string * Type * bool -> Microsoft.SqlServer.Management.Data.PropertyData
Public Sub New (name As String, type As Type, enabled As Boolean)

매개 변수

name
String

속성을 나타내는 문자열 입력입니다.

type
Type

사용할 속성 유형입니다.

enabled
Boolean

속성을 사용할 수 있으면 true이고, 그렇지 않으면 false입니다.

적용 대상

PropertyData(String, Type, Object)

지정한 이름, 유형 및 값을 포함하는 PropertyData 클래스의 새 인스턴스를 초기화합니다.

public:
 PropertyData(System::String ^ name, Type ^ type, System::Object ^ value);
public PropertyData (string name, Type type, object value);
new Microsoft.SqlServer.Management.Data.PropertyData : string * Type * obj -> Microsoft.SqlServer.Management.Data.PropertyData
Public Sub New (name As String, type As Type, value As Object)

매개 변수

name
String

속성을 나타내는 문자열 입력입니다.

type
Type

사용할 속성 유형입니다.

value
Object

속성에서 사용할 개체입니다.

적용 대상

PropertyData(String, Type, Object, Boolean)

지정한 이름, 유형, 값 및 사용 설정을 포함하는 PropertyData 클래스의 새 인스턴스를 초기화합니다.

public:
 PropertyData(System::String ^ name, Type ^ type, System::Object ^ value, bool enabled);
public PropertyData (string name, Type type, object value, bool enabled);
new Microsoft.SqlServer.Management.Data.PropertyData : string * Type * obj * bool -> Microsoft.SqlServer.Management.Data.PropertyData
Public Sub New (name As String, type As Type, value As Object, enabled As Boolean)

매개 변수

name
String

속성을 나타내는 문자열 입력입니다.

type
Type

사용할 속성 유형입니다.

value
Object

속성에서 사용할 개체입니다.

enabled
Boolean

속성을 사용할 수 있으면 true이고, 그렇지 않으면 false입니다.

적용 대상