mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-13 07:24:08 +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
53 lines
1.7 KiB
C#
53 lines
1.7 KiB
C#
namespace CurlSharp.Enums
|
|
{
|
|
/// <summary>
|
|
/// A member of this enumeration is passed to the function
|
|
/// <see cref="CurlShare.SetOpt" /> to configure a <see cref="CurlShare" />
|
|
/// transfer.
|
|
/// </summary>
|
|
public enum CurlShareOption
|
|
{
|
|
/// <summary>
|
|
/// Start-of-enumeration; do not use in application code.
|
|
/// </summary>
|
|
None = 0,
|
|
|
|
/// <summary>
|
|
/// The parameter, which should be a member of the
|
|
/// <see cref="CurlLockData" /> enumeration, specifies a type of
|
|
/// data that should be shared.
|
|
/// </summary>
|
|
Share = 1,
|
|
|
|
/// <summary>
|
|
/// The parameter, which should be a member of the
|
|
/// <see cref="CurlLockData" /> enumeration, specifies a type of
|
|
/// data that should be unshared.
|
|
/// </summary>
|
|
Unshare = 2,
|
|
|
|
/// <summary>
|
|
/// The parameter should be a reference to a
|
|
/// <see cref="CurlShare.CurlShareLockCallback" /> delegate.
|
|
/// </summary>
|
|
LockFunction = 3,
|
|
|
|
/// <summary>
|
|
/// The parameter should be a reference to a
|
|
/// <see cref="CurlShare.CurlShareUnlockCallback" /> delegate.
|
|
/// </summary>
|
|
UnlockFunction = 4,
|
|
|
|
/// <summary>
|
|
/// The parameter allows you to specify an object reference that
|
|
/// will passed to the <see cref="CurlShare.CurlShareLockCallback" /> delegate and
|
|
/// the <see cref="CurlShare.CurlShareUnlockCallback" /> delegate.
|
|
/// </summary>
|
|
UserData = 5,
|
|
|
|
/// <summary>
|
|
/// End-of-enumeration; do not use in application code.
|
|
/// </summary>
|
|
Last = 6
|
|
};
|
|
} |