You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.8 KiB
62 lines
1.8 KiB
using System;
|
|
using System.Threading;
|
|
|
|
namespace MediaBrowser.Common.Net
|
|
{
|
|
/// <summary>
|
|
/// Class HttpRequestOptions
|
|
/// </summary>
|
|
public class HttpRequestOptions
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the URL.
|
|
/// </summary>
|
|
/// <value>The URL.</value>
|
|
public string Url { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the accept header.
|
|
/// </summary>
|
|
/// <value>The accept header.</value>
|
|
public string AcceptHeader { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the cancellation token.
|
|
/// </summary>
|
|
/// <value>The cancellation token.</value>
|
|
public CancellationToken CancellationToken { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the resource pool.
|
|
/// </summary>
|
|
/// <value>The resource pool.</value>
|
|
public SemaphoreSlim ResourcePool { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the user agent.
|
|
/// </summary>
|
|
/// <value>The user agent.</value>
|
|
public string UserAgent { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the progress.
|
|
/// </summary>
|
|
/// <value>The progress.</value>
|
|
public IProgress<double> Progress { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether [enable HTTP compression].
|
|
/// </summary>
|
|
/// <value><c>true</c> if [enable HTTP compression]; otherwise, <c>false</c>.</value>
|
|
public bool EnableHttpCompression { get; set; }
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="HttpRequestOptions"/> class.
|
|
/// </summary>
|
|
public HttpRequestOptions()
|
|
{
|
|
EnableHttpCompression = true;
|
|
}
|
|
}
|
|
}
|