TypeProvider.AddAssemblyReference(String) Method

Definition

Adds a reference to the Assembly to the internal list. This assembly is used for the Type lookup in the GetType(String) method.

public:
 void AddAssemblyReference(System::String ^ path);
public void AddAssemblyReference (string path);
member this.AddAssemblyReference : string -> unit
Public Sub AddAssemblyReference (path As String)

Parameters

path
String

The path of the Assembly to add.

Exceptions

path is a null reference (Visual Basic Nothing).

Examples

The following code example shows how to create a new instance of the TypeProvider class and run the AddAssemblyReference method. This code example is part of the BasicDesignerHosting SDK Sample from the WorkflowLoader.cs file. For more information, see Basic Designer Hosting.

TypeProvider typeProvider = new TypeProvider(host);
typeProvider.AddAssemblyReference(typeof(string).Assembly.Location);
Dim typeProvider As TypeProvider = New TypeProvider(host)
typeProvider.AddAssemblyReference(GetType(String).Assembly.Location)

Applies to