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
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
namespace CurlSharp.Enums
|
|
{
|
|
/// <summary>
|
|
/// Contains return codes from many of the functions in the
|
|
/// <see cref="CurlShare" /> class.
|
|
/// </summary>
|
|
public enum CurlShareCode
|
|
{
|
|
/// <summary>
|
|
/// The function succeeded.
|
|
/// </summary>
|
|
Ok = 0,
|
|
|
|
/// <summary>
|
|
/// A bad option was passed to <see cref="CurlShare.SetOpt" />.
|
|
/// </summary>
|
|
BadOption = 1,
|
|
|
|
/// <summary>
|
|
/// An attempt was made to pass an option to
|
|
/// <see cref="CurlShare.SetOpt" /> while the CurlShare object is in use.
|
|
/// </summary>
|
|
InUse = 2,
|
|
|
|
/// <summary>
|
|
/// The <see cref="CurlShare" /> object's internal handle is invalid.
|
|
/// </summary>
|
|
Invalid = 3,
|
|
|
|
/// <summary>
|
|
/// Out of memory. This is a severe problem.
|
|
/// </summary>
|
|
NoMem = 4,
|
|
|
|
/// <summary>
|
|
/// End-of-enumeration marker; do not use in application code.
|
|
/// </summary>
|
|
Last = 5
|
|
};
|
|
} |