Gets the application for the given index
Namespace: EAL.Interfaces.LogicAssembly: 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
) |
Return Value
Type:
IApplicationApplication
Examples
Synchronous method
| | Copy |
|---|
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