ModuleInfo.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 assembly name of the client module.
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 assembly name of the client module.
Examples
The following example produces the following trace output:
ClientModuleTypeName : rxDemo.DemoModule, rHeil, Version=0.0.1.3, Culture=neutral, PublicKeyToken=16b74a31ba18bbaf
Name : rHeil
internal class DemoModule : Microsoft.Web.Management.Client.Module
{
protected override void Initialize(
IServiceProvider serviceProvider, ModuleInfo moduleInfo)
{
base.Initialize(serviceProvider, moduleInfo);
Trace.WriteLine(" ClientModuleTypeName : " +
moduleInfo.ClientModuleTypeName);
Trace.WriteLine(" Name : " + moduleInfo.Name);
// Clear the trace window.
resetTrace();
public override System.Collections.ICollection GetTaskItems() {
ArrayList items = new ArrayList();
Image imgAsk = rLoadImg.loadImgs(SystemIcons.Asterisk, 16);
Image imgErr = rLoadImg.loadImgs(SystemIcons.Error, 16);
Remarks
The assembly name includes class, name, version, culture, and the public key.