namespace Best.HTTP.Request.Upload { /// /// Provides constants representing different, special body lengths for HTTP requests with upload streams. /// public static class BodyLengths { /// /// The 's length is unknown and the plugin have to send data with 'chunked' transfer-encoding. /// public const long UnknownWithChunkedTransferEncoding = -2; /// /// The 's length is unknown and the plugin have to send data as-is, without any encoding. /// public const long UnknownRaw = -1; /// /// No content to send. /// public const long NoBody = 0; } }