ModuleService.ModuleName Property

Definition

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);
}

Applies to