Gest application for given index

Namespace: EAL.Interfaces.Logic
Assembly: EAL (in EAL.dll) Version: 1.1.5.0 (1.1.5.0)

Syntax

C#
IApplication this[
	int index
] { get; }
Visual Basic
ReadOnly Default Property Item ( 
	index As Integer
) As IApplication
	Get
Visual C++
property IApplication^ default[int index] {
	IApplication^ get (int index);
}

Parameters

index
Type: System..::..Int32

Property Value

Type: IApplication

Examples

 Copy imageCopy
private static void Method1()
{
    using (IEALConnection ealConnection = new EALConnection())
    {
        ealConnection.Connect("192.168.0.10");
        IApplication app = ealConnection.Logic.Applications[0];
        string name = app.NameOfApplication;
        Console.WriteLine("Name is:" + name);
        app.StartApplication();
    }
}

See Also