Share via


IWMSPlugin.Properties (C#)

banner art

Previous Next

IWMSPlugin.Properties (C#)

The Properties property retrieves an IWMSNamedValues collection containing name-value pairs that describe the plug-in.

Syntax

  IWMSNamedValues = Plugin.Properties;

Property Value

An IWMSNamedValues collection.

Remarks

This property is read-only. For more information, see IWMSNamedValues Object and IWMSNamedValue Object.

Example Code

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

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

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 a pointer to a collection of name-value
        // pairs containing plug-in properties.
        Properties = Plugin.Properties;
    }
}
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