Share via


IWMSServerPeakCounters.OutgoingDistributionAllocatedBandwidth (Visual Basic .NET)

banner art

Previous Next

IWMSServerPeakCounters.OutgoingDistributionAllocatedBandwidth (Visual Basic .NET)

The OutgoingDistributionAllocatedBandwidth property retrieves the maximum bandwidth allocated to distribution connections since the last reset.

Syntax

  Integer = IWMSServerPeakCounters.OutgoingDistributionAllocatedBandwidth

Property Value

Integer containing the bandwidth, in Kbps.

Remarks

This property is read-only. You can use the IWMSServerPeakCounters.Reset method to reset the property to the current value.

Example Code

Imports Microsoft.WindowsMediaServices.Interop
Imports System.Runtime.InteropServices

Private Sub GetBandwidth()

    ' Declare variables.
    Dim Server As WMSServer
    Dim PeakCounters As IWMSServerPeakCounters
    Dim iValue As Integer

Try
    ' Create the WMSServer object.
    Server = New WMSServer()

    ' Retrieve a list of peak statistics
    ' for the server.
    PeakCounters = Server.PeakCounters

    ' Retrieve the maximum distribution bandwidth used
    ' since the start time.
    iValue = PeakCounters.OutgoingDistributionAllocatedBandwidth

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