Share via


IWMSServerLimits.ConnectionRate (Visual Basic .NET)

banner art

Previous Next

IWMSServerLimits.ConnectionRate (Visual Basic .NET)

The ConnectionRate property specifies and retrieves the maximum rate of client connections permitted by the server.

Syntax

  IWMSServerLimits
  .ConnectionRate = Integer
Integer = IWMSServerLimits.ConnectionRate

Property Value

Integer containing the maximum number of permitted connections per second.

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 connection rate. The default value of the parameter is 50.

Example Code

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

Private Sub GetSetConnectionRate()

    ' 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 maximum rate for client connections.
    iValue = Limits.ConnectionRate

    ' Set the maximum rate of client connections.
    Limits.ConnectionRate = 15

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