Share via


IWMSPlayers.length (C#)

banner art

Previous Next

IWMSPlayers.length (C#)

The length property retrieves the number of IWMSPlayer objects contained in the IWMSPlayers collection.

Syntax

  int = IWMSPlayers.length;

Property Value

int containing the number of IWMSPlayer objects.

If this property fails, it throws an exception.

Number Meaning
0x8002000B Indicates that varIndex is an invalid index location.

Remarks

This property is read-only. This is the JScript version of the IWMSPlayers.Count property. 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;
IWMSPlayers        Players;
IWMSPlayer         Player;

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

    // Retrieve the IWMSPlayers object.
    Players = Server.Players;

    // Use the length property as an iteration boundary
    // when accessing individual objects in the collection.
    for (int i = 0; i < Players.length; i++)
    {
        // Retrieve an IWMSPlayer object from the collection.
        Player = Players[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