Share via


IWMSPlugin.CLSID (C#)

banner art

Previous Next

IWMSPlugin.CLSID (C#)

The CLSID property retrieves the CLSID of the plug-in.

Syntax

  string = Plugin.CLSID;

Property Value

A string containing the CLSID of the plug-in.

Remarks

This property is read-only. The GUID is returned in the following format: {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}.

Example Code

using Microsoft.WindowsMediaServices.Interop;
using System.Runtime.InteropServices;

// Declare variables.
WMSServer          Server;
IWMSPlugins        Plugins;
IWMSPlugin         Plugin;

try {
    // Create a new WMSServer object.
    Server = new WMSServerClass();

    // Retrieve the IWMSPlugins object.
    Plugins = Server.Authenticators;

    // Retrieve information about each plug-in.
    for (int i = 0; i < Plugins.Count; i++)
    {
        Plugin = Plugins[i];

        // Retrieve the class ID for the plug-in.
        strText = Plugin.CLSID;
    }
}
catch (COMException comExc) {
    // TODO: Handle COM exceptions.
}
catch (Exception e) {
    // TODO: Handle exceptions.
}

Requirements

Reference: Add a reference to Microsoft.WindowsMediaServices.

Namespace: Microsoft.WindowsMediaServices.Interop.

Assembly: Microsoft.WindowsMediaServices.dll.

Library: WMSServerTypeLib.dll.

Platform: Windows Server 2003 family, Windows Server 2008 family.

See Also

Previous Next