WMS_DATA_CONTAINER_OPEN_FLAGS

banner art

Previous Next

WMS_DATA_CONTAINER_OPEN_FLAGS

The WMS_DATA_CONTAINER_OPEN_FLAGS enumeration type identifies general data container I/O information.

Syntax

  typedef enum WMS_DATA_CONTAINER_OPEN_FLAGS{
  WMS_DATA_CONTAINER_READ_ACCESS = 0x0001,
  WMS_DATA_CONTAINER_WRITE_ACCESS = 0x0002,
  WMS_DATA_CONTAINER_CREATE_NEW_CONTAINER = 0x0004,
  WMS_DATA_CONTAINER_ALLOW_BUFFER_IO = 0x0008,
  WMS_DATA_CONTAINER_SHARED_SOURCE = 0x0010
};

Members

WMS_DATA_CONTAINER_READ_ACCESS

The server requests read access for content.

WMS_DATA_CONTAINER_WRITE_ACCESS

The server requests write access for content.

WMS_DATA_CONTAINER_CREATE_NEW_CONTAINER

The server requests a new data container.

WMS_DATA_CONTAINER_ALLOW_BUFFER_IO

Intermediate buffering of the data container can be used.

WMS_DATA_CONTAINER_SHARED_SOURCE

The server requests that the content be shared. For example, a broadcast is shared among multiple clients.

Remarks

The server sends this enumeration when it calls the OpenDataContainer or OpenDirectory method on the IWMSDataSourcePlugin interface of a data source plug-in. You can create a custom response by creating a custom plug-in.

Requirements

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