WMS_DATA_CONTAINER_VERSION_CACHE_FLAGS

banner art

Previous Next

WMS_DATA_CONTAINER_VERSION_CACHE_FLAGS

The WMS_DATA_CONTAINER_VERSION_CACHE_FLAGS enumeration type identifies options for caching and streaming content.

Syntax

  typedef enum WMS_DATA_CONTAINER_VERSION_CACHE_FLAGS{
  
  WMS_DATA_CONTAINER_VERSION_ALLOW_PROXY_CACHING  = 0x1,
  WMS_DATA_CONTAINER_VERSION_ALLOW_PLAYER_CACHING  = 0x2,
  
  WMS_DATA_CONTAINER_VERSION_ALLOW_STREAM_SPLITTING  = 0x4
  
  };

Members

WMS_DATA_CONTAINER_VERSION_ALLOW_PROXY_CACHING

The content can be cached by a proxy server.

WMS_DATA_CONTAINER_VERSION_ALLOW_PLAYER_CACHING

The content can be cached by a player.

WMS_DATA_CONTAINER_VERSION_ALLOW_STREAM_SPLITTING

Stream splitting is permitted.

Remarks

This enumeration is used by the GetCacheFlags and SetCacheFlags methods on the IWMSDataContainerVersion interface. You can use the enumeration in a custom cache proxy plug-in to help implement a cache miss policy.

Requirements

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