namespace CurlSharp { /// /// Members of this enumeration should be passed to /// when it is called with the /// CurlShare or Unshare options /// provided in the enumeration. /// public enum CurlLockData { /// /// Not used. /// None = 0, /// /// Used internally by libcurl. /// Share = 1, /// /// Cookie data will be shared across the objects /// using this shared object. /// Cookie = 2, /// /// Cached Dns hosts will be shared across the /// objects using this shared object. /// Dns = 3, /// /// Not supported yet. /// SslSession = 4, /// /// Not supported yet. /// Connect = 5, /// /// End-of-enumeration marker; do not use in application code. /// Last = 6 }; }