Enum ResponseStatus
An application independent way of reporting the status in a command's response.
public enum ResponseStatus
Fields
AuthenticationRequired = 3The command needed authentication, which had not been properly provided.
ConditionsNotSatisfied = 4The command could not complete because some conditions were not satisfied.
Failed = 1The command failed to complete.
NoData = 5The command requested information of a YubiKey, but the data did not exist.
This response simply means that the requested data is not on the YubiKey. It does not even necessarily mean that the YubiKey will never have such data or does not support that data element.
For an example of how this value is used, see GetDataResponse.
RetryWithTouch = 2The command needs to be retried after the user touches the YubiKey.
Success = 0The command succeeded.