IWMSServer.PeakCounters (Visual Basic .NET)
.gif)
| Previous | Next |
IWMSServer.PeakCounters (Visual Basic .NET)
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
Imports Microsoft.WindowsMediaServices.Interop
Imports System.Runtime.InteropServices
Private Sub GetPeakStats()
' Declare variables.
Dim Server As WMSServer
Dim PeakCounters As IWMSServerPeakCounters
Try
' Create the WMSServer object.
Server = New WMSServer()
' Retrieve a list of peak statistics
' for the server.
PeakCounters = Server.PeakCounters
Catch excCom As COMException
' TODO: Handle COM exceptions.
Catch exc As Exception
' TODO: Handle errors.
Finally
' TODO: Clean-up code goes here.
End Try
End Sub
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 |