Assembly.Location Propriedade

Definição

Obtém o caminho completo ou uma localização UNC do arquivo carregado que contém o manifesto.

public:
 virtual property System::String ^ Location { System::String ^ get(); };
public virtual string Location { get; }
member this.Location : string
Public Overridable ReadOnly Property Location As String

Valor da propriedade

A localização do arquivo carregado que contém o manifesto. Se o assembly for carregado de uma matriz de bytes, como ao usar Load(Byte[]), o valor retornado será uma cadeia de caracteres vazia ("").

Implementações

Exceções

O assembly atual é um assembly dinâmico, representado por um objeto AssemblyBuilder.

Exemplos

O exemplo a seguir exibe o local do arquivo carregado que contém o manifesto.

Assembly^ SampleAssembly;
// Instantiate a target object.
Int32 Integer1(0);
Type^ Type1;
// Set the Type instance to the target class type.
Type1 = Integer1.GetType();
// Instantiate an Assembly class to the assembly housing the Integer type.  
SampleAssembly = Assembly::GetAssembly( Integer1.GetType() );
// Display the physical location of the assembly containing the manifest.
Console::WriteLine( "Location= {0}", SampleAssembly->Location );
// The example displays the following output:
//    Location=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorlib.dll
Assembly SampleAssembly;
// Instantiate a target object.
Int32 Integer1 = new Int32();
Type Type1;
// Set the Type instance to the target class type.
Type1 = Integer1.GetType();
// Instantiate an Assembly class to the assembly housing the Integer type.
SampleAssembly = Assembly.GetAssembly(Integer1.GetType());
// Display the physical location of the assembly containing the manifest.
Console.WriteLine("Location=" + SampleAssembly.Location);
// The example displays the following output:
//   Location=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorlib.dll
Dim SampleAssembly As [Assembly]
' Instantiate a target object.
Dim Integer1 As New Int32()
Dim Type1 As Type
' Set the Type instance to the target class type.
Type1 = Integer1.GetType()
' Instantiate an Assembly class to the assembly housing the Integer type.  
SampleAssembly = [Assembly].GetAssembly(Integer1.GetType())
' Display the physical location of the assembly containing the manifest.
Console.WriteLine(("Location=" + SampleAssembly.Location))
' The example displays the following output:
'    Location=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorlib.dll

Comentários

No .NET 5 e versões posteriores, para assemblies agrupados, o valor retornado é uma cadeia de caracteres vazia.

.NET Framework somente: se o arquivo carregado tiver sido copiado por sombra, o local será o do arquivo depois de ser copiado por sombra. Para obter o local antes que o arquivo seja copiado por sombra, use a CodeBase propriedade .

Aplica-se a

Confira também