IWMSPlayers.length (Visual Basic .NET)

The length property retrieves the number of IWMSPlayer objects that are contained in the IWMSPlayers collection.

Integer = IWMSPlayers.length

Property Value

Integer containing the number of IWMSPlayer objects.

If this property fails, it returns an error number.

Number

Description

0x8002000B

varIndex is an invalid index location.

Remarks

This property is read-only. This is the JScript version of the IWMSPlayers.Count property. It is included for developers who are more comfortable with JScript syntax.

Example

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

Private Sub GetCount()

    ' Declare variables.
    Dim Server As WMSServer
    Dim Players As IWMSPlayers
    Dim iCount As Integer

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

    ' Retrieve the IWMSPlayers object.
    Players = Server.Players

    ' Retrieve the total count of current connections.
    iCount = Players.length

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

Reference

IWMSPlayer Object (Visual Basic .NET)

IWMSPlayers Object (Visual Basic .NET)

IWMSPlayers.Count (Visual Basic .NET)