Assembly.GetName Method

Definition

Gets an AssemblyName for this assembly.

Overloads

GetName()

Gets an AssemblyName for this assembly.

GetName(Boolean)

Gets an AssemblyName for this assembly, setting the codebase as specified by copiedName.

GetName()

Gets an AssemblyName for this assembly.

public:
 virtual System::Reflection::AssemblyName ^ GetName();
public virtual System.Reflection.AssemblyName GetName ();
abstract member GetName : unit -> System.Reflection.AssemblyName
override this.GetName : unit -> System.Reflection.AssemblyName
Public Overridable Function GetName () As AssemblyName

Returns

An object that contains the fully parsed display name for this assembly.

Implements

Applies to

GetName(Boolean)

Gets an AssemblyName for this assembly, setting the codebase as specified by copiedName.

public:
 virtual System::Reflection::AssemblyName ^ GetName(bool copiedName);
public virtual System.Reflection.AssemblyName GetName (bool copiedName);
abstract member GetName : bool -> System.Reflection.AssemblyName
override this.GetName : bool -> System.Reflection.AssemblyName
Public Overridable Function GetName (copiedName As Boolean) As AssemblyName

Parameters

copiedName
Boolean

true to set the CodeBase to the location of the assembly after it was shadow copied; false to set CodeBase to the original location.

Returns

An object that contains the fully parsed display name for this assembly.

Implements

Applies to