namespace CurlSharp.Enums { /// /// This enumeration contains values used to specify the FTP Ssl level /// using the option when calling /// /// public enum CurlFtpSsl { /// /// Don't attempt to use Ssl. /// None = 0, /// /// Try using Ssl, proceed as normal otherwise. /// Try = 1, /// /// Require Ssl for the control connection or fail with /// . /// Control = 2, /// /// Require Ssl for all communication or fail with /// . /// All = 3, /// /// End-of-enumeration marker. Do not use in a client application. /// Last = 4 }; }