IWMSPlayers.Count (Visual Basic .NET)
.gif)
| Previous | Next |
IWMSPlayers.Count (Visual Basic .NET)
The Count property retrieves the number of IWMSPlayer objects contained in the IWMSPlayers collection
Syntax
Integer = IWMSPlayers.Count
Property Value
Integer that contains the number of IWMSPlayer objects.
Remarks
This property is read-only.
Example Code
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.Count
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
- IWMSPlayer Object (Visual Basic .NET)
- IWMSPlayers Object (Visual Basic .NET)
- IWMSPlayers.length (Visual Basic .NET)
| Previous | Next |