namespace CurlSharp { /// /// This enumeration contains values used to specify the FTP Ssl /// authorization level using the /// option when calling /// /// public enum CurlFtpAuth { /// /// Let libcurl decide on the authorization scheme. /// Default = 0, /// /// Use "AUTH Ssl". /// SSL = 1, /// /// Use "AUTH TLS". /// TLS = 2, /// /// End-of-enumeration marker. Do not use in a client application. /// Last = 3 }; }