Serial Framework C++ Edition

◆ OnGetComplete()

__event void OnGetComplete ( void *  Sender,
const int  Error,
const tstring Description,
CwclStream *const  Stream 
)

The event fires when the Get operation has been completed.

Parameters
SenderThe object that initiated the event.
ErrorThe operation result code. If operation has been completed with success the Error is
See also
WCL_E_SUCCESS
.
DescriptionAdditional optional description of the operation result.
StreamThe stream object used in operation.

If the operation completed with success the Stream object contains the object's data. If the operation completed with error the Stream contains a partial data and is invalid. An application can not use the object from the Stream if the operation completed with error.

See also
CwclStream