IWMSServerPeakCounters.StreamingHTTPPlayers (C#)
.gif)
| Previous | Next |
IWMSServerPeakCounters.StreamingHTTPPlayers (C#)
The StreamingHTTPPlayers property retrieves the maximum number of players that simultaneously received content by using the HTTP protocol from the server since the last reset.
Syntax
int = IWMSServerPeakCounters.StreamingHTTPPlayers;
Property Value
int containing the peak number of players that have received content.
Remarks
This property is read-only. You can use the IWMSServerPeakCounters.Reset method to reset the property to the current value.
Example Code
using Microsoft.WindowsMediaServices.Interop;
using System.Runtime.InteropServices;
// Retrieve a list of peak statistics for the server.
PeakCounters = Server.PeakCounters;
// Retrieve the maximum number of streaming players
// since the start time.
iValue = PeakCounters.StreamingHTTPPlayers;
}
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Ā 2008 family.
See Also
| Previous | Next |