Assembly.Location Tulajdonság

Definíció

Lekéri a jegyzékfájlt tartalmazó betöltött fájl teljes elérési útját vagy UNC-helyét.

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

Tulajdonság értéke

A jegyzékfájlt tartalmazó betöltött fájl helye. Ha a szerelvény egy bájttömbből töltődik be, például használat közben Load(Byte[]), a visszaadott érték egy üres sztring ("").

Megvalósítás

Kivételek

Az aktuális szerelvény egy objektum által AssemblyBuilder képviselt dinamikus szerelvény.

Példák

Az alábbi példa a jegyzékfájlt tartalmazó betöltött fájl helyét jeleníti meg.

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

Megjegyzések

Az .NET 5-ös és újabb verzióiban a csomagösszetett szerelvények esetében a visszaadott érték egy üres sztring.

csak .NET keretrendszer: Ha a betöltött fájl shadow-copied volt, a hely a fájl helye az árnyékmásolás után. A fájl árnyékmásolata előtti hely lekéréséhez használja a tulajdonságot CodeBase .

A következőre érvényes:

Lásd még