namespace CurlSharp.Enums
{
///
/// Your handler for the delegate
/// should return a member of this enumeration.
///
public enum CurlIoError
{
///
/// Indicate that the callback processed everything okay.
///
Ok = 0,
///
/// Unknown command sent to callback. Right now, only
/// RestartRead
is supported.
///
UnknownCommand = 1,
///
/// Indicate to libcurl that a restart failed.
///
FailRestart = 2,
///
/// End of enumeration marker, don't use in a client application.
///
Last = 3
}
}