TypeProvider.AddAssemblyReference(String) Method
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.
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
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)