mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-14 16:04:11 +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
31 lines
932 B
C#
31 lines
932 B
C#
namespace CurlSharp.Enums
|
|
{
|
|
/// <summary>
|
|
/// Values containing the type of shared access requested when libcurl
|
|
/// calls the <see cref="CurlShare.CurlShareLockCallback" /> delegate.
|
|
/// </summary>
|
|
public enum CurlLockAccess
|
|
{
|
|
/// <summary>
|
|
/// Unspecified action; the delegate should never receive this.
|
|
/// </summary>
|
|
None = 0,
|
|
|
|
/// <summary>
|
|
/// The delegate receives this call when libcurl is requesting
|
|
/// read access to the shared resource.
|
|
/// </summary>
|
|
Shared = 1,
|
|
|
|
/// <summary>
|
|
/// The delegate receives this call when libcurl is requesting
|
|
/// write access to the shared resource.
|
|
/// </summary>
|
|
Single = 2,
|
|
|
|
/// <summary>
|
|
/// End-of-enumeration marker; do not use in application code.
|
|
/// </summary>
|
|
Last = 3
|
|
};
|
|
} |