namespace CurlSharp
{
///
/// Contains values used to specify the Ssl version level when using
/// the option in a call
/// to
///
public enum CurlSslVersion
{
///
/// Use whatever version the Ssl library selects.
///
Default = 0,
///
/// Use TLS version 1.
///
Tlsv1 = 1,
///
/// Use Ssl version 2. This is not a good option unless it's the
/// only version supported by the remote server.
///
Sslv2 = 2,
///
/// Use Ssl version 3. This is a preferred option.
///
Sslv3 = 3,
///
/// Last entry in enumeration; do not use in application code.
///
Last = 4
};
}