PropertyData Constructors

Definition

Initializes a new instance of the PropertyData class.

Overloads

PropertyData(ISfcProperty)

Initializes a new instance of the PropertyData class with the specified property.

PropertyData(String, Object)

Initializes a new instance of the PropertyData class with the specified name and value.

PropertyData(String, Type)

Initializes a new instance of the PropertyData class with the specified name and type.

PropertyData(String, Object, Boolean)

Initializes a new instance of the PropertyData class with the specified name, value, and enabled setting.

PropertyData(String, Type, Boolean)

Initializes a new instance of the PropertyData class with the specified name, type, and enabled setting.

PropertyData(String, Type, Object)

Initializes a new instance of the PropertyData class with the specified name, type, and value.

PropertyData(String, Type, Object, Boolean)

Initializes a new instance of the PropertyData class with the specified name, type, value, and enabled setting.

PropertyData(ISfcProperty)

Initializes a new instance of the PropertyData class with the specified property.

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)

Parameters

property
ISfcProperty

A property value that represents a certain property.

Applies to

PropertyData(String, Object)

Initializes a new instance of the PropertyData class with the specified name and value.

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)

Parameters

name
String

A string that represent the name of the control

value
Object

An object, passed by reference that represents <description of what the parameter does or represents>.

Applies to

PropertyData(String, Type)

Initializes a new instance of the PropertyData class with the specified name and type.

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)

Parameters

name
String

A string that represents the name of the control

type
Type

The specified type of property.

Applies to

PropertyData(String, Object, Boolean)

Initializes a new instance of the PropertyData class with the specified name, value, and enabled setting.

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)

Parameters

name
String

A string input that represents the property.

value
Object

An object to be used in the property.

enabled
Boolean

true if the property if enabled; otherwise, false.

Applies to

PropertyData(String, Type, Boolean)

Initializes a new instance of the PropertyData class with the specified name, type, and enabled setting.

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)

Parameters

name
String

A string input that represents the property.

type
Type

The type of property to be used.

enabled
Boolean

true if the property if enabled; otherwise, false.

Applies to

PropertyData(String, Type, Object)

Initializes a new instance of the PropertyData class with the specified name, type, and value.

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)

Parameters

name
String

A string input that represents the property.

type
Type

The type of property to be used.

value
Object

An object to be used in the property.

Applies to

PropertyData(String, Type, Object, Boolean)

Initializes a new instance of the PropertyData class with the specified name, type, value, and enabled setting.

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)

Parameters

name
String

A string input that represents the property.

type
Type

The type of property to be used.

value
Object

An object to be used in the property.

enabled
Boolean

true if the property if enabled; otherwise, false.

Applies to