IWMSPlugins.length (C#)

banner art

Previous Next

IWMSPlugins.length (C#)

The length property retrieves the number of IWMSPlugin objects contained in the IWMSPlugins collection.

Syntax

  int = IWMSPlugins.length;

Property Value

int containing the number of plug-ins.

Remarks

This property is read-only. This is the JScript version of the IWMSPlugins.Count method. It is included for developers who are more comfortable with JScript syntax.

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.EventHandlers;

    // Use the length property as an iteration boundary
    // when accessing individual objects in the collection.
    for (int i = 0; i < Plugins.length; i++)
    {
        // IWMSPlugin.
        Plugin = Plugins[i];
    }
}
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