Gets the Client item at the specified index.
public Leadtools.Mediastreaming.Client Item(int index) {get;}
Public Overloads ReadOnly Property Item( _ByVal index As Integer _) As Leadtools.Mediastreaming.Client
public:property Leadtools.Mediastreaming.Client^ Item {Leadtools.Mediastreaming.Client^ get(int index);}
index
The zero-based index of the item to get.
The Client item at the specified index.
Exceptions
| Exception | Description |
|---|---|
| System.ArgumentOutOfRangeException |
This property provides the ability to access a specific item in the collection by using the following syntax: myCollection[index] The C# language uses the this keyword to define the indexers instead of implementing the Item property. VB implements Item as a default property, which provides the same indexing functionality.
using Leadtools;using Leadtools.MediaStreaming;public Server _server = null;public bool _result = false;public void IndexContainsExample(){try{// create an instance of the server object_server = new Leadtools.MediaStreaming.Server();// start the server_server.Start();// make sure that there is some clients connected to the server.// for instance, a client with (IP = 10.0.125.88) is connected to the server.// change this for your active client's IP Address.// retrieve a copy of the Application PropertiesClients clients = _server.GetClients();// get the client object of IP address "10.0.125.88"// this is equal to:// Client client = clients["10.0.125.88"];int nIndex = clients.IndexOf("10.0.125.88");Client client = null;if (nIndex > -1)// access the client via the collection indexerclient = clients[nIndex];// check whether the collection contains this item// (it should we just got it with IndexOf above)if (clients.Contains(client)){// set the result to what we expect_result = true;}else{_result = false;}}catch (Exception){_result = false;}}
Imports LeadtoolsImports Leadtools.MediaStreamingPublic _server As Server = NothingPublic _result As Boolean = FalsePublic Sub IndexContainsExample()Try' create an instance of the server object_server = New Leadtools.MediaStreaming.Server()' start the server_server.Start()' make sure that there is some clients connected to the server.' for instance, a client with (IP = 10.0.125.88) is connected to the server.' change this for your active client's IP Address.' retrieve a copy of the Application PropertiesDim clients As Clients = _server.GetClients()' get the client object of IP address "10.0.125.88"' this is equal to:' Client client = clients["10.0.125.88"];Dim nIndex As Integer = clients.IndexOf("10.0.125.88")Dim client As Client = NothingIf nIndex > -1 Then' access the client via the collection indexerclient = clients(nIndex)End If' check whether the collection contains this item' (it should we just got it with IndexOf above)If clients.Contains(client) Then' set the result to what we expect_result = TrueElse_result = FalseEnd IfCatch e1 As Exception_result = FalseEnd TryEnd Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
