namespace CurlSharp
{
///
/// The status code associated with an object in a
/// operation. One of these is returned in response
/// to reading the property.
///
public enum CurlMessage
{
///
/// First entry in the enumeration, not used.
///
None = 0,
///
/// The associated object completed.
///
Done = 1,
///
/// End-of-enumeration marker, not used.
///
Last = 2
};
}