Gets the application for the given index

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

Syntax

C#
IApplications Applications { get; }
Visual Basic
ReadOnly Property Applications As IApplications
	Get
Visual C++
property IApplications^ Applications {
	IApplications^ get ();
}

Return Value

Type: IApplications
Application

Examples

Synchronous method
 Copy imageCopy
private static void Method1()
{
    using (IEALConnection ealConnection = new EALConnection())
    {
        ealConnection.Connect("192.168.0.10");
        IApplication app = ealConnection.Logic.Applications[0];
        app.StartApplication();
    }
}

See Also