IWMSServer.PeakCounters (C#)

banner art

Previous Next

IWMSServer.PeakCounters (C#)

The PeakCounters property retrieves an IWMSServerPeakCounters object that contains methods that can be used to retrieve information collected by a running server.

Syntax

  IWMSServerPeakCounters = IWMSServer.PeakCounters;

Property Value

An IWMSServerPeakCounters object.

Remarks

This property is read-only. The server collects information about the peak number of connected clients, the bandwidth, and so on. For more information about peak counters, see the IWMSServerPeakCounters object.

Example Code

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









    // Retrieve a list of peak statistics
    // for the server.
    PeakCounters = Server.PeakCounters;
}
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