namespace CurlSharp
{
///
/// Contains return codes for many of the functions in the
/// class.
///
public enum CurlMultiCode
{
///
/// You should call again before calling
/// .
///
CallMultiPerform = -1,
///
/// The function succeded.
///
Ok = 0,
///
/// The internal is bad.
///
BadHandle = 1,
///
/// One of the handles associated with the
/// object is bad.
///
BadEasyHandle = 2,
///
/// Out of memory. This is a severe problem.
///
OutOfMemory = 3,
///
/// Internal error deep within the libcurl library.
///
InternalError = 4,
///
/// End-of-enumeration marker, not used.
///
Last = 5
};
}