NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Assembly.GetName (Boolean)

Gets the AssemblyName of this assembly. The codebase in the AssemblyName will be set to the original codebase or the codebase of the shadow copy depending on the value of the Boolean parameter passed to the method.

[Visual Basic]
Overloads Overridable Public Function GetName( _
   ByVal copiedName As Boolean _
) As AssemblyName
[C#]
public virtual AssemblyName GetName(
   bool copiedName
);
[C++]
public: virtual AssemblyName* GetName(
   bool copiedName
);
[JScript]
public function GetName(
   copiedName : Boolean
) : AssemblyName;

Parameters

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

Return Value

The AssemblyName for this assembly.

See Also

Assembly Class | Assembly Members | System.Reflection Namespace | Assembly.GetName Overload List