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
25 lines
719 B
C#
25 lines
719 B
C#
namespace CurlSharp.Enums
|
|
{
|
|
/// <summary>
|
|
/// The status code associated with an <see cref="CurlEasy" /> object in a
|
|
/// <see cref="CurlMulti" /> operation. One of these is returned in response
|
|
/// to reading the <see cref="CurlMultiInfo.Msg" /> property.
|
|
/// </summary>
|
|
public enum CurlMessage
|
|
{
|
|
/// <summary>
|
|
/// First entry in the enumeration, not used.
|
|
/// </summary>
|
|
None = 0,
|
|
|
|
/// <summary>
|
|
/// The associated <see cref="CurlEasy" /> object completed.
|
|
/// </summary>
|
|
Done = 1,
|
|
|
|
/// <summary>
|
|
/// End-of-enumeration marker, not used.
|
|
/// </summary>
|
|
Last = 2
|
|
};
|
|
} |