Share via


IWMSServerLimits::get_DiagnosticEvents

banner art

Previous Next

IWMSServerLimits::get_DiagnosticEvents

The get_DiagnosticEvents method retrieves the maximum number of IWMSDiagnosticEvent objects that a specific IWMSDiagnosticEvents collection can contain.

Syntax

  HRESULT get_DiagnosticEvents(
  
  long*
  
  pVal
  
  );

Parameters

pVal

[out] Pointer to a long containing the maximum number of diagnostic events.

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.

Remarks

The default number of objects that this collection can contain is 200. Valid values are 100 to 2000.

After the specified limit is reached, the oldest object, as determined by its Time property, will be replaced when a new diagnostic event occurs.

Example Code

  

Requirements

Header: wmsserver.h.

Library: WMSServerTypeLib.dll.

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

See Also

Previous Next