WMS_EVENT_CLASS

banner art

Previous Next

WMS_EVENT_CLASS

The WMS_EVENT_CLASS enumeration type indicates which event classes are reported through Windows Management Instrumentation.

Syntax

  typedef enum WMS_EVENT_CLASS{
  WMS_WMI_CLASS_UNKNOWN  = 0x00,
  WMS_WMI_CLASS_CLIENT  = 0x01,
  WMS_WMI_CLASS_SERVER  = 0x02,
  WMS_WMI_CLASS_PUBLISHING_POINT  = 0x04,
  WMS_WMI_CLASS_LIMIT_CHANGE  = 0x08,
  WMS_WMI_CLASS_LIMIT_HIT  = 0x10,
  WMS_WMI_CLASS_PLUGIN  = 0x20,
  WMS_WMI_CLASS_CACHE  = 0x40,
  WMS_WMI_CLASS_PLAYLIST  = 0x80,
  WMS_NUM_EVENT_CLASSES = 0x09
};

Members

WMS_WMI_CLASS_UNKNOWN

Indicates an unknown event class.

WMS_WMI_CLASS_CLIENT

Indicates Windows Management Instrumentation (WMI) events for the client.

WMS_WMI_CLASS_SERVER

Indicates WMI events for the server.

WMS_WMI_CLASS_PUBLISHING_POINT

Indicates WMI events for the publishing point.

WMS_WMI_CLASS_LIMIT_CHANGE

Indicates WMI events for limit changes.

WMS_WMI_CLASS_LIMIT_HIT

Indicates WMI events for limit hits.

WMS_WMI_CLASS_PLUGIN

Indicates WMI events for plug-ins.

WMS_WMI_CLASS_CACHE

Indicates WMI events for a cache.

WMS_WMI_CLASS_PLAYLIST

Indicates WMI events for playlists.

WMS_NUM_EVENT_CLASSES

The number of enumeration values in the WMS_BUFFER_SETTING enumeration type, not including the WMS_NUM_EVENT_CLASSES value.

Remarks

You can use this enumeration when you are configuring the WMS WMI Event Handler plug-in. By using the IWMSWMIBridgeAdmin interface, you can subscribe to specific WMI event classes. For more information, see WMS WMI Event Handler Plug-in Properties.

Requirements

Library: WMSServerTypeLib.dll.

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

See Also

Previous Next