Compartilhar via


TypeProvider.AddAssemblyReference(String) Método

Definição

Adiciona uma referência ao Assembly para a lista interna. Este assembly é usado para a pesquisa de Type no método GetType(String).

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

Parâmetros

path
String

O caminho do Assembly a ser adicionado.

Exceções

path é uma referência nula (Visual Basic Nothing).

Exemplos

O exemplo de código a seguir mostra como criar uma nova instância da TypeProvider classe e executar o AddAssemblyReference método . Este exemplo de código faz parte do Exemplo do SDK BasicDesignerHosting do arquivo WorkflowLoader.cs. Para obter mais informações, consulte Hospedagem básica do designer.

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

Aplica-se a