QueryCancel Delegate
Namespace: Yubico.YubiKey Assembly: Yubico.YubiKey.dllThis 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).
C#
public delegate bool QueryCancel(byte commandByte)
Parameters
TODO Class.Header.Syntax.Parameters: Type | Name | Description |
---|---|---|
byte | commandByte | The command the caller is executing. |
Returns
bool
A boolean, indicating whether the Query call is calling for the command to be canceled or not.