namespace CurlSharp
{
///
/// A member of this enumeration is passed to the function
///
///
public enum CurlVersion
{
///
/// Capabilities associated with the initial version of libcurl.
///
First = 0,
///
/// Capabilities associated with the second version of libcurl.
///
Second = 1,
///
/// Capabilities associated with the third version of libcurl.
///
Third = 2,
///
/// Same as Third.
///
Now = Third,
///
/// End-of-enumeration marker; do not use in application code.
///
Last = 3
};
}