Share via


IWMSDiagnosticEvents.RemoveAll (C#)

banner art

Previous Next

IWMSDiagnosticEvents.RemoveAll (C#)

The RemoveAll method removes all IWMSDiagnosticEvent objects from the IWMSDiagnosticEvents collection.

Syntax

  IWMSDiagnosticEvents
  .RemoveAll();

Parameters

This method takes no parameters.

Return Values

This method does not return a value.

Example Code

using Microsoft.WindowsMediaServices.Interop;
using System.Runtime.InteropServices;

// Declare variables.
WMSServer                   Server;
IWMSDiagnosticEvents        DiagnosticEvents;

try {
    // Create a new WMSServer object.
    Server = new WMSServerClass();

    // Retrieve the IWMSDiagnosticEvents object.
    DiagnosticEvents = Server.DiagnosticEvents;

    // Remove all diagnostic events.
    DiagnosticEvents.RemoveAll;
}
catch (COMException comExc) {
    // TODO: Handle COM exceptions.
}
catch (Exception e) {
    // TODO: Handle exceptions.
}

Requirements

Reference: Add a reference to Microsoft.WindowsMediaServices.

Namespace: Microsoft.WindowsMediaServices.Interop.

Assembly: Microsoft.WindowsMediaServices.dll.

Library: WMSServerTypeLib.dll.

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

See Also

Previous Next