Cleans up the system

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

Syntax

C#
void ClearError()
Visual Basic
Sub ClearError
Visual C++
void ClearError()

Examples

Synchronous method
 Copy imageCopy
private static void Method1()
{
    using (IEALConnection ealConnection = new EALConnection())
    {
        ealConnection.Connect("192.168.0.10");
        ealConnection.System.ClearError();
    }
}
Asynchronous method
 Copy imageCopy
private static void Method2()
{
    using (IEALConnection ealConnection = new EALConnection(true))
    {
        ealConnection.Connect("192.168.0.10");
        ealConnection.System.ClearError();
        ealConnection.WaitUntilQueueComplete();
    }
}

See Also