mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-15 00:14:10 +02:00
25 lines
713 B
C#
25 lines
713 B
C#
namespace CurlSharp
|
|
{
|
|
/// <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
|
|
};
|
|
} |