ComAssembly Constructors

Definition

Overloads

ComAssembly()

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

ComAssembly(String)

Initializes a new instance of the ComAssembly class using the specified assembly name.

ComAssembly(String, String)

Initializes a new instance of the ComAssembly class using the specified assembly and its identifier.

ComAssembly()

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

public ComAssembly ();
Public Sub New ()

Applies to

ComAssembly(String)

Initializes a new instance of the ComAssembly class using the specified assembly name.

public ComAssembly (string name);
new Microsoft.AnalysisServices.ComAssembly : string -> Microsoft.AnalysisServices.ComAssembly
Public Sub New (name As String)

Parameters

name
String

The name of the assembly.

Applies to

ComAssembly(String, String)

Initializes a new instance of the ComAssembly class using the specified assembly and its identifier.

public ComAssembly (string name, string id);
new Microsoft.AnalysisServices.ComAssembly : string * string -> Microsoft.AnalysisServices.ComAssembly
Public Sub New (name As String, id As String)

Parameters

name
String

The name of the assembly.

id
String

The identified of the assembly.

Applies to