Property to access all logic related methods and propeties

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

Syntax

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

Property Value

Type: ILogic

Examples

Synchronous method
 Copy imageCopy
private static void Method1()
{
    using (IEALConnection ealConnection = new EALConnection())
    {
        ealConnection.Connect("192.168.0.10");
        ealConnection.Logic.ResetApplication(ApplicationResetMode.RESET_COLD);
    }
}
Asynchronous method
 Copy imageCopy
private static void Method1()
{
    using (IEALConnection ealConnection = new EALConnection(true))
    {
        ealConnection.Connect("192.168.0.10");
        ealConnection.Logic.ResetApplication(ApplicationResetMode.RESET_COLD);
        ealConnection.WaitUntilQueueComplete();
    }
}

See Also