ModuleService.ModuleName Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the name of the assembly that contains the module service.
protected:
property System::String ^ ModuleName { System::String ^ get(); };
protected string ModuleName { get; }
member this.ModuleName : string
Protected ReadOnly Property ModuleName As String
Property Value
The name of the ModuleService assembly, without the .dll extension.
Examples
The following example writes trace information that is available from the ModuleName property.
void TraceM() {
Trace.WriteLine(" ModuleService.ModuleName: " + ModuleName);
}