WMS_CLIENT_STATUS

banner art

Previous Next

WMS_CLIENT_STATUS

The WMS_CLIENT_STATUS enumeration type identifies the possible states for a client.

Syntax

  typedef enum WMS_CLIENT_STATUS{
  WMS_CLIENT_DISCONNECTED  = 0x0000,
  WMS_CLIENT_IDLE  = 0x0001,
  WMS_CLIENT_OPEN  = 0x0002,
  WMS_CLIENT_STREAMING  = 0x0003
};

Members

WMS_CLIENT_DISCONNECTED

The client was disconnected.

WMS_CLIENT_IDLE

The client is connected to the server but no content is being streamed.

WMS_CLIENT_OPEN

The client is connected to the server and a resource has been opened for streaming. Clients that send a pause or stop command will also have this status.

WMS_CLIENT_STREAMING

The client is connected to the server and content is being streamed.

Remarks

This enumeration is used by the Status property on the IWMSOutgoingDistributionConnection and IWMSPlayer interfaces.

Requirements

Header: wmsserver.h.

Library: WMSServerTypeLib.dll.

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

See Also (General)

See Also (Visual Basic .NET)

See Also (C#)

See Also (C++)

Previous Next