ModuleDefinition.ClientModuleTypeName Property

Definition

Gets the client module type name that was used to create the module definition.

public:
 property System::String ^ ClientModuleTypeName { System::String ^ get(); };
public string ClientModuleTypeName { get; }
member this.ClientModuleTypeName : string
Public ReadOnly Property ClientModuleTypeName As String

Property Value

The value of the clientModuleTypeName parameter that was passed to the ModuleDefinition(String, String) constructor.

Examples

The following example writes the value of the ClientModuleTypeName property to the tracing output.

Trace.WriteLine("ClientModuleTypeName: " + modDefn.ClientModuleTypeName);

Applies to