Delegate QueryCancel
This delegate defines the signature of a method that can be called to
determine if an operation should cancel. The caller supplies a
commandByte and the Query responds with true
(the command should be
canceled), or false
(there is no current request that the command
be canceled).
public delegate bool QueryCancel(byte commandByte)
Parameters
commandByte
byteThe command the caller is executing.
Returns
- bool
A boolean, indicating whether the Query call is calling for the command to be canceled or not.