Share via


IWMSPublishingPoint::get_EnableWrapperPath

banner art

Previous Next

IWMSPublishingPoint::get_EnableWrapperPath

The get_EnableWrapperPath method retrieves a Boolean value that indicates whether a wrapper playlist is enabled for the publishing point.

Syntax

  HRESULT get_EnableWrapperPath(
  VARIANT_BOOL*  pVal
);

Parameters

pVal

[out] Pointer to a VARIANT_BOOL that indicates whether a playlist is enabled.

Return Values

If the method succeeds, it returns S_OK. If it fails, it returns an HRESULT error code.

Return code Number Description
E_POINTER 0x80004003 Indicates that pVal is a NULL pointer argument.
NS_E_PUBLISHING_POINT_REMOVED 0xC00D145AL Indicates that the publishing point was already removed.
NS_E_WRONG_PUBLISHING_POINT_TYPE 0xC00D1452L Indicates that the method is not supported for cache proxy publishing points.

Remarks

The default value is FALSE.

This method is not supported for cache proxy publishing points. Also, wrapper playlists are not used with broadcast data sinks. Therefore, the server will not use items in a wrapper playlist to send data to a multicast stream or to send data to an archive sink for archiving.

For more information about wrapper playlists, see the IWMSPublishingPoint::put_WrapperPath method.

Example Code

  EXIT:
    // TODO: Release temporary COM objects and uninitialize COM.

Requirements

Header: wmsserver.h.

Library: WMSServerTypeLib.dll.

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

See Also

Previous Next