ModuleDefinition.ClientModuleTypeName 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 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);