Share via


ObjectPropertyProvider Constructors

Definition

Initializes a new instance of the ObjectPropertyProvider class.

Overloads

ObjectPropertyProvider()

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

ObjectPropertyProvider(Object)

Initializes a new instance of the ObjectPropertyProvider class with the specified data object.

ObjectPropertyProvider(Type)

Initializes a new instance of the ObjectPropertyProvider class with the specified type.

ObjectPropertyProvider(Object, IObjectPropertyFilter)

Initializes a new instance of the ObjectPropertyProvider class with the specified data object and filter.

ObjectPropertyProvider(Type, IObjectPropertyFilter)

Initializes a new instance of the ObjectPropertyProvider class with the specified type and filter.

ObjectPropertyProvider(Type, String)

Initializes a new instance of the ObjectPropertyProvider class with the specified type and prefix.

ObjectPropertyProvider(Object, String, IObjectPropertyFilter)

Initializes a new instance of the ObjectPropertyProvider class with the specified data object, prefix, and filter.

ObjectPropertyProvider(Type, String, IObjectPropertyFilter)

Initializes a new instance of the ObjectPropertyProvider class with the specified type, prefix, and filter.

ObjectPropertyProvider()

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

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

Applies to

ObjectPropertyProvider(Object)

Initializes a new instance of the ObjectPropertyProvider class with the specified data object.

public:
 ObjectPropertyProvider(System::Object ^ dataObject);
public ObjectPropertyProvider (object dataObject);
new Microsoft.SqlServer.Management.Data.ObjectPropertyProvider : obj -> Microsoft.SqlServer.Management.Data.ObjectPropertyProvider
Public Sub New (dataObject As Object)

Parameters

dataObject
Object

An object that provides data.

Applies to

ObjectPropertyProvider(Type)

Initializes a new instance of the ObjectPropertyProvider class with the specified type.

public:
 ObjectPropertyProvider(Type ^ type);
public ObjectPropertyProvider (Type type);
new Microsoft.SqlServer.Management.Data.ObjectPropertyProvider : Type -> Microsoft.SqlServer.Management.Data.ObjectPropertyProvider
Public Sub New (type As Type)

Parameters

type
Type

The type of object in the property.

Applies to

ObjectPropertyProvider(Object, IObjectPropertyFilter)

Initializes a new instance of the ObjectPropertyProvider class with the specified data object and filter.

public:
 ObjectPropertyProvider(System::Object ^ dataObject, Microsoft::SqlServer::Management::Data::IObjectPropertyFilter ^ filter);
public ObjectPropertyProvider (object dataObject, Microsoft.SqlServer.Management.Data.IObjectPropertyFilter filter);
new Microsoft.SqlServer.Management.Data.ObjectPropertyProvider : obj * Microsoft.SqlServer.Management.Data.IObjectPropertyFilter -> Microsoft.SqlServer.Management.Data.ObjectPropertyProvider
Public Sub New (dataObject As Object, filter As IObjectPropertyFilter)

Parameters

dataObject
Object

An object that provides data to the property.

filter
IObjectPropertyFilter

The criteria that is use to filter the objects within the property.

Applies to

ObjectPropertyProvider(Type, IObjectPropertyFilter)

Initializes a new instance of the ObjectPropertyProvider class with the specified type and filter.

public:
 ObjectPropertyProvider(Type ^ type, Microsoft::SqlServer::Management::Data::IObjectPropertyFilter ^ filter);
public ObjectPropertyProvider (Type type, Microsoft.SqlServer.Management.Data.IObjectPropertyFilter filter);
new Microsoft.SqlServer.Management.Data.ObjectPropertyProvider : Type * Microsoft.SqlServer.Management.Data.IObjectPropertyFilter -> Microsoft.SqlServer.Management.Data.ObjectPropertyProvider
Public Sub New (type As Type, filter As IObjectPropertyFilter)

Parameters

type
Type

The type of object within the property.

filter
IObjectPropertyFilter

The criteria that is use to filter the objects within the property.

Applies to

ObjectPropertyProvider(Type, String)

Initializes a new instance of the ObjectPropertyProvider class with the specified type and prefix.

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

Parameters

type
Type

The type of object within the property.

prefix
String

A string that represents the prefix of the control.

Applies to

ObjectPropertyProvider(Object, String, IObjectPropertyFilter)

Initializes a new instance of the ObjectPropertyProvider class with the specified data object, prefix, and filter.

public:
 ObjectPropertyProvider(System::Object ^ dataObject, System::String ^ prefix, Microsoft::SqlServer::Management::Data::IObjectPropertyFilter ^ filter);
public ObjectPropertyProvider (object dataObject, string prefix, Microsoft.SqlServer.Management.Data.IObjectPropertyFilter filter);
new Microsoft.SqlServer.Management.Data.ObjectPropertyProvider : obj * string * Microsoft.SqlServer.Management.Data.IObjectPropertyFilter -> Microsoft.SqlServer.Management.Data.ObjectPropertyProvider
Public Sub New (dataObject As Object, prefix As String, filter As IObjectPropertyFilter)

Parameters

dataObject
Object

An object that provides data to the property.

prefix
String

A string that represents the prefix of the control.

filter
IObjectPropertyFilter

The criteria that is use to filter the objects within the property.

Applies to

ObjectPropertyProvider(Type, String, IObjectPropertyFilter)

Initializes a new instance of the ObjectPropertyProvider class with the specified type, prefix, and filter.

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

Parameters

type
Type

The type of object within the property.

prefix
String

A string that represents the prefix of the control.

filter
IObjectPropertyFilter

The criteria that is use to filter the objects within the property.

Applies to