IUnsolicitedMessages.IsCompleted Property

The IsCompleted property returns a value indicating whether the currently active colon command is complete (this can be a standard command or a report initiation command). It returns true if the currently active colon command is complete; otherwise, it returns false.

Namespace – ABSuite.AccessLayer.Connector.Core

Assembly – Unisys.ABSuite.AccessLayer.Connector.Core (in Unisys.ABSuite.AccessLayer.Connector.Core.dll)

Syntax

bool IsCompleted { get; }

Using the IUnsolicitedMessages Interface for the IsCompleted Property

The following code is an example of using the IsCompleted property:

 // Check to see if the Colon command is complete
            if (ABSConnection.MessagesHandler.IsCompleted)
            {
                ABSConnection.Logger.LogInfo(() => string.Format("Command is complete!"));
            }