namespace CurlSharp
{
///
/// Your handler for the
/// delegate is passed one of these values as its first parameter.
/// Right now, the only supported value is
/// RestartRead
.
///
public enum CurlIoCommand
{
///
/// No IOCTL operation; we should never see this.
///
Nop = 0,
///
/// When this is sent, your callback may need to, for example,
/// rewind a local file that is being sent via FTP.
///
RestartRead = 1,
///
/// End of enumeration marker, don't use in a client application.
///
Last = 2
}
}