WMS_CONTEXT_TYPE

banner art

Previous Next

WMS_CONTEXT_TYPE

The WMS_CONTEXT_TYPE enumeration type identifies the context type.

Syntax

  typedef enum WMS_CONTEXT_TYPE{
  WMS_UNKNOWN_CONTEXT_TYPE = 0,
  WMS_SERVER_CONTEXT_TYPE = 1,
  WMS_USER_CONTEXT_TYPE = 2,
  WMS_PRESENTATION_CONTEXT_TYPE = 3,
  WMS_CONTENT_DESCRIPTION_CONTEXT_TYPE = 4,
  WMS_COMMAND_REQUEST_CONTEXT_TYPE = 5,
  WMS_COMMAND_RESPONSE_CONTEXT_TYPE = 6,
  WMS_TRANSPORT_SPEC_CONTEXT_TYPE = 7,
  WMS_PACKETIZER_CONTEXT_TYPE = 8,
  WMS_CACHE_CONTENT_INFORMATION_CONTEXT_TYPE = 9,
  WMS_ARCHIVE_CONTEXT_TYPE = 10,
  WMS_NUM_CONTEXT_TYPE = 11
};

Members

WMS_UNKNOWN_CONTEXT_TYPE

The type of the context is unknown.

WMS_SERVER_CONTEXT_TYPE

The context contains information about the server.

WMS_USER_CONTEXT_TYPE

The context contains information about the client.

WMS_PRESENTATION_CONTEXT_TYPE

The context contains information about the presentation being streamed to clients. This includes the bit rate, duration, and so on.

WMS_CONTENT_DESCRIPTION_CONTEXT_TYPE

The context contains information about the content being streamed to clients. This includes the name of the author, a description of the content, and so on.

WMS_COMMAND_REQUEST_CONTEXT_TYPE

The context contains information about client requests.

WMS_COMMAND_RESPONSE_CONTEXT_TYPE

The context contains information about server responses to client requests.

WMS_TRANSPORT_SPEC_CONTEXT_TYPE

The context contains information about the transport protocol used to deliver the stream. This can be UDP or TCP.

WMS_PACKETIZER_CONTEXT_TYPE

The context contains information about data packets.

WMS_CACHE_CONTENT_INFORMATION_CONTEXT_TYPE

The context contains information about a cache.

WMS_ARCHIVE_CONTEXT_TYPE

The context contains information about an archive.

WMS_NUM_CONTEXT_TYPE

The number of enumeration values in the WMS_CONTEXT_TYPE enumeration type, not including the WMS_NUM_CONTEXT_TYPE value.

Remarks

This enumeration is used by the AllocIWMSCommandContext method on the IWMSClassObject interface and the GetContextType method on the IWMSContext interface. Contexts are data structures containing name-value pairs that the server uses to save information. For more information, see Contexts.

Requirements

Header: wmscontext.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