Udostępnij za pośrednictwem


TypeProvider.AddAssemblyReference(String) Metoda

Definicja

Dodaje odwołanie do Assembly listy wewnętrznej. Ten zestaw jest używany do Type wyszukiwania w metodzie GetType(String) .

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

Parametry

path
String

Ścieżka do dodania Assembly .

Wyjątki

path jest odwołaniem o wartości null (Visual Basic Nothing).

Przykłady

Poniższy przykład kodu pokazuje, jak utworzyć nowe wystąpienie TypeProvider klasy i uruchomić metodę AddAssemblyReference . Ten przykład kodu jest częścią przykładu BasicDesignerHosting SDK z pliku WorkflowLoader.cs. Aby uzyskać więcej informacji, zobacz Hosting projektanta podstawowego.

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

Dotyczy