Enum ChecksumValidationStatus
States for response checksum validation
public enum ChecksumValidationStatus
Fields
INVALID = 3
The checksum of the response stream did not match the header sent by the service.
NOT_VALIDATED = 0
Set when the SDK did not perform checksum validation.
PENDING_RESPONSE_READ = 1
Set when a checksum was selected to be validated, but validation will not completed until the response stream is fully read. At that point an exception will be thrown if the checksum is invalid.
SUCCESSFUL = 2
The checksum has been validated successfully during response unmarshalling.