DataObjectSupport Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
DataObjectSupport() |
Class constructor. Instantiates a nonparameterized instance of the DataObjectSupport class. |
DataObjectSupport(String, Assembly) |
Class constructor. Instantiates a parameterized instance of the DataObjectSupport class that provides means for locating a resource stream. |
DataObjectSupport(String, String) |
Class constructor. Instantiates a parameterized instance of the DataObjectSupport class that provides resource directory information. |
DataObjectSupport()
Class constructor. Instantiates a nonparameterized instance of the DataObjectSupport class.
protected:
DataObjectSupport();
protected DataObjectSupport ();
Protected Sub New ()
Applies to
DataObjectSupport(String, Assembly)
Class constructor. Instantiates a parameterized instance of the DataObjectSupport class that provides means for locating a resource stream.
public:
DataObjectSupport(System::String ^ baseName, System::Reflection::Assembly ^ assembly);
public DataObjectSupport (string baseName, System.Reflection.Assembly assembly);
new Microsoft.VisualStudio.Data.DataObjectSupport : string * System.Reflection.Assembly -> Microsoft.VisualStudio.Data.DataObjectSupport
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
DataObjectSupport(String, String)
Class constructor. Instantiates a parameterized instance of the DataObjectSupport class that provides resource directory information.
public:
DataObjectSupport(System::String ^ baseName, System::String ^ directory);
public DataObjectSupport (string baseName, string directory);
new Microsoft.VisualStudio.Data.DataObjectSupport : string * string -> Microsoft.VisualStudio.Data.DataObjectSupport
Public Sub New (baseName As String, directory As String)
Parameters
- baseName
- String
The base name of the resource in the assembly.
- directory
- String
The directory that contains the XML file.
Exceptions
The baseName
and/or directory
parameters are null.