Property to access all logic related methods and propeties

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

Syntax

C#
public ILogic Logic { get; }
Visual Basic
Public ReadOnly Property Logic As ILogic
	Get
Visual C++
public:
virtual property ILogic^ Logic {
	ILogic^ get () sealed;
}

Property Value

Type: ILogic

Implements

IEALConnection..::..Logic

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