IWMSServer.Players (C#)

banner art

Previous Next

IWMSServer.Players (C#)

The Players object retrieves an IWMSPlayers object containing a collection of IWMSPlayer objects. Each object in the collection contains specific information about a connected client.

Syntax

  IWMSPlayers = IWMSServer.Players;

Property Value

An IWMSPlayers collection.

Remarks

This property is read-only. Each IWMSPlayer object contains client information such as the IP address, the user name, and so on. For more information about the client information collected by the server, see the IWMSPlayer object.

Example Code

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









    // Retrieve a list of currently connected clients.
    Players = Server.Players;
}
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