Share via


IWMSPlayers.Item (Visual Basic .NET)

banner art

Previous Next

IWMSPlayers.Item (Visual Basic .NET)

The Item property retrieves a specific IWMSPlayer object from the IWMSPlayers collection.

Syntax

  IWMSPlayer = IWMSPlayers.Item(
  varIndex As Variant
)

Parameters

varIndex

[in] Variant that contains the index of an IWMSPlayer object.

Property Value

An IWMSPlayer object.

Remarks

This property is read-only.

Example Code

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

Private Sub GetPlayerItem()

    ' Declare variables.
    Dim Server As WMSServer
    Dim Players As IWMSPlayers
    Dim Player As IWMSPlayer
    Dim i As Integer

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

    ' Retrieve the IWMSPlayers object.
    Players = Server.Players

    ' Retrieve information about each client connection.
    For i = 0 To Players.Count - 1
        Player = Players.Item(i)
    Next i

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