Gets name of the application
Namespace: EAL.Interfaces.LogicAssembly: EAL (in EAL.dll) Version: 1.1.5.0 (1.1.5.0)
Syntax
| C# |
|---|
string NameOfApplication { get; } |
| Visual Basic |
|---|
ReadOnly Property NameOfApplication As String
Get |
| Visual C++ |
|---|
property String^ NameOfApplication {
String^ get ();
} |
Property Value
Type:
String
Examples
| | Copy |
|---|
private static void Method1()
{
using (IEALConnection ealConnection = new EALConnection())
{
ealConnection.Connect("192.168.0.10");
IApplication app = ealConnection.Logic.GetApplication(0);
string name = app.NameOfApplication;
Console.WriteLine("Name is:" + name);
}
} |
See Also