IWMSServerLimits.OutgoingDistributionBandwidth (Visual Basic .NET)

banner art

Previous Next

IWMSServerLimits.OutgoingDistributionBandwidth (Visual Basic .NET)

The OutgoingDistributionBandwidth property specifies and retrieves the maximum total distribution bandwidth permitted by the server.

Syntax

  IWMSServerLimits
  .OutgoingDistributionBandwidth = Integer
Integer = IWMSServerLimits.OutgoingDistributionBandwidth

Property Value

Integer containing the bandwidth, in Kbps.

If this property fails, it returns an error number.

Number Description
0x80070057 Integer is an invalid argument.

Remarks

If the parameter is –1, there is no limit on the bandwidth. By default, the value of the parameter is –1.

Example Code

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

Private Sub GetSetBandwidthLimit()

    ' Declare variables.
    Dim Server As WMSServer
    Dim Limits As IWMSServerLimits
    Dim iValue As Integer

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

    ' Retrieve the IWMSServerLimits object for the server.
    Limits = Server.Limits

    ' Retrieve the total bandwidth limit for distribution connections.
    iValue = Limits.OutgoingDistributionBandwidth

    ' Set the total bandwidth limit for distribution connections.
    Limits.OutgoingDistributionBandwidth = 2048

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