Assembly Constructors

Definition

Overloads

Assembly()

Initializes a new instance of the Assembly class using the default values.

Assembly(String)

Initializes a new instance of the Assembly class using a name.

Assembly(String, String)

Initializes a new instance of the Assembly class using a name and an ID.

Assembly()

Initializes a new instance of the Assembly class using the default values.

protected Assembly ();
Protected Sub New ()

Applies to

Assembly(String)

Initializes a new instance of the Assembly class using a name.

protected Assembly (string name);
new Microsoft.AnalysisServices.Assembly : string -> Microsoft.AnalysisServices.Assembly
Protected Sub New (name As String)

Parameters

name
String

The name of the assembly.

Applies to

Assembly(String, String)

Initializes a new instance of the Assembly class using a name and an ID.

protected Assembly (string name, string id);
new Microsoft.AnalysisServices.Assembly : string * string -> Microsoft.AnalysisServices.Assembly
Protected Sub New (name As String, id As String)

Parameters

name
String

The name of the assembly.

id
String

The ID of the assembly.

Applies to