Gets the name of the mensioned application.

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

Syntax

C#
string GetNameOfApplication(
	int index
)
Visual Basic
Function GetNameOfApplication ( 
	index As Integer
) As String
Visual C++
String^ GetNameOfApplication(
	int index
)

Parameters

index
Type: System..::..Int32
Application index

Return Value

Type: String
Name

Examples

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

See Also