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#
IApplication GetApplication(
	int index
)
Visual Basic
Function GetApplication ( 
	index As Integer
) As IApplication
Visual C++
IApplication^ GetApplication(
	int index
)

Parameters

index
Type: System..::..Int32
Index

Return Value

Type: IApplication
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.GetApplication(0);
        app.StartApplication();
    }
}

See Also