Share via


IWMSServerLimits.PlayerBandwidth (Visual Basic .NET)

banner art

Previous Next

IWMSServerLimits.PlayerBandwidth (Visual Basic .NET)

The PlayerBandwidth property specifies and retrieves the maximum total player bandwidth permitted by the server.

Syntax

  IWMSServerLimits
  .PlayerBandwidth = Integer
Integer = IWMSServerLimits.PlayerBandwidth

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

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 client connections.
    iValue = Limits.PlayerBandwidth

    ' Set the total bandwidth limit for client connections.
    Limits.PlayerBandwidth = 5068

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