IWMSServerLimits.PerOutgoingDistributionConnectionBandwidth (Visual Basic .NET)

banner art

Previous Next

IWMSServerLimits.PerOutgoingDistributionConnectionBandwidth (Visual Basic .NET)

The PerOutgoingDistributionConnectionBandwidth property specifies and retrieves the maximum bandwidth permitted for a single distribution connection.

Syntax

  IWMSServerLimits
  .PerOutgoingDistributionConnectionBandwidth = Integer
Integer = IWMSServerLimits.PerOutgoingDistributionConnectionBandwidth

Property Value

Integer containing the maximum permitted bandwidth, in Kbps.

If this property fails, it returns an error number.

Number Description
0x80070057 Integer is an invalid argument.

Remarks

This property only applies to new connections. 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 GetSetBandwidth()

    ' 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 bandwidth allowed for each
    ' distribution connection.
    iValue = Limits.PerOutgoingDistributionConnectionBandwidth

    ' Set the bandwidth allowed for each distribution connection.
    Limits.PerOutgoingDistributionConnectionBandwidth = 256

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