namespace CurlSharp.Enums { /// /// Contains return codes from many of the functions in the /// class. /// public enum CurlShareCode { /// /// The function succeeded. /// Ok = 0, /// /// A bad option was passed to . /// BadOption = 1, /// /// An attempt was made to pass an option to /// while the CurlShare object is in use. /// InUse = 2, /// /// The object's internal handle is invalid. /// Invalid = 3, /// /// Out of memory. This is a severe problem. /// NoMem = 4, /// /// End-of-enumeration marker; do not use in application code. /// Last = 5 }; }