DataViewSupport Constructors

Definition

Overloads

DataViewSupport()

Class constructor. Instantiates a new instance of the DataViewSupport class.

DataViewSupport(String, Assembly)

Class constructor. Instantiates a new instance of the DataViewSupport class, providing resource base name and the assembly in which the resource is located.

DataViewSupport(String, String)

Class constructor. Instantiates a new instance of the DataViewSupport class.

DataViewSupport()

Class constructor. Instantiates a new instance of the DataViewSupport class.

protected:
 DataViewSupport();
protected DataViewSupport ();
Protected Sub New ()

Applies to

DataViewSupport(String, Assembly)

Class constructor. Instantiates a new instance of the DataViewSupport class, providing resource base name and the assembly in which the resource is located.

public:
 DataViewSupport(System::String ^ baseName, System::Reflection::Assembly ^ assembly);
public DataViewSupport (string baseName, System.Reflection.Assembly assembly);
new Microsoft.VisualStudio.Data.DataViewSupport : string * System.Reflection.Assembly -> Microsoft.VisualStudio.Data.DataViewSupport
Public Sub New (baseName As String, assembly As Assembly)

Parameters

baseName
String

The base name of the resource in the assembly.

assembly
Assembly

The assembly that contains the resource.

Exceptions

The baseName and/or assembly parameters are null.

Applies to

DataViewSupport(String, String)

Class constructor. Instantiates a new instance of the DataViewSupport class.

public:
 DataViewSupport(System::String ^ baseName, System::String ^ directory);
public DataViewSupport (string baseName, string directory);
new Microsoft.VisualStudio.Data.DataViewSupport : string * string -> Microsoft.VisualStudio.Data.DataViewSupport
Public Sub New (baseName As String, directory As String)

Parameters

baseName
String

The base name of the resource XML file.

directory
String

The directory path to the XML file that contains the resource.

Exceptions

The baseName and/or assembly parameters are null.

Applies to