IWMSServerCurrentCounters.FileReadRate (C#)

banner art

Previous Next

IWMSServerCurrentCounters.FileReadRate (C#)

The FileReadRate property retrieves the current bandwidth consumed by file-read operations.

Syntax

  int = IWMSServerCurrentCounters.FileReadRate;

Property Value

int containing the bandwidth, in Kbps.

Remarks

This property is read-only. The server uses a 1-second interval to calculate the rate.  The read rate is measured in Kbps at the most recent second.

Example Code

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











    // Retrieve a list of current statistics for the server.
    Set CurrentCounters = Server.CurrentCounters

    // Retrieve the current bandwidth consumed by 
    // file-read operations.
    iValue = CurrentCounters.FileReadRate;
}
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