mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00

Really hope I don't break anything with this Went to have a go at .NET core and it just became too confusing for me with 'Jackett' namespace referring to both Jackett.Common and Jackett
34 lines
887 B
C#
34 lines
887 B
C#
namespace CurlSharp.Enums
|
|
{
|
|
/// <summary>
|
|
/// A member of this enumeration is passed to the function
|
|
/// <see cref="Curl.GetVersionInfo" />
|
|
/// </summary>
|
|
public enum CurlVersion
|
|
{
|
|
/// <summary>
|
|
/// Capabilities associated with the initial version of libcurl.
|
|
/// </summary>
|
|
First = 0,
|
|
|
|
/// <summary>
|
|
/// Capabilities associated with the second version of libcurl.
|
|
/// </summary>
|
|
Second = 1,
|
|
|
|
/// <summary>
|
|
/// Capabilities associated with the third version of libcurl.
|
|
/// </summary>
|
|
Third = 2,
|
|
|
|
/// <summary>
|
|
/// Same as <c>Third</c>.
|
|
/// </summary>
|
|
Now = Third,
|
|
|
|
/// <summary>
|
|
/// End-of-enumeration marker; do not use in application code.
|
|
/// </summary>
|
|
Last = 3
|
|
};
|
|
} |