Share via


IWMSServerLimits.CPUUtilizationDuringConnection (Visual Basic .NET)

banner art

Previous Next

IWMSServerLimits.CPUUtilizationDuringConnection (Visual Basic .NET)

The CPUUtilizationDuringConnection property specifies and retrieves the maximum CPU utilization permitted before new client connections to the server are denied.

Syntax

  IWMSServerLimits
  .CPUUtilizationDuringConnection = Integer
Integer = IWMSServerLimits.CPUUtilizationDuringConnection

Property Value

Integer containing the maximum percentage utilization from 0 to 100.

If this property fails, it returns an error number.

Number Description
0x80070057 Integer is an invalid argument.

Remarks

By default, the value of the parameter is 100.

Example Code

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

Private Sub GetSetCPULoad()

    ' 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 CPU utilization allowed before
    ' new client connections to the server are denied.
    iValue = Limits.CPUUtilizationDuringConnection

    ' Set the maximum CPU utilization allowed before
    ' new client connections to the server are denied.
    Limits.CPUUtilizationDuringConnection = 75

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