2013-03-14 12:52:53 -07:00
|
|
|
|
using System;
|
2013-09-17 19:43:34 -07:00
|
|
|
|
using System.Collections.Generic;
|
2013-03-14 12:52:53 -07:00
|
|
|
|
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; }
|
|
|
|
|
|
2013-05-03 21:07:27 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the accept header.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The accept header.</value>
|
2013-09-17 19:43:34 -07:00
|
|
|
|
public string AcceptHeader
|
|
|
|
|
{
|
|
|
|
|
get { return GetHeaderValue("Accept"); }
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
RequestHeaders["Accept"] = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-03-14 12:52:53 -07:00
|
|
|
|
/// <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>
|
2013-09-17 19:43:34 -07:00
|
|
|
|
public string UserAgent
|
|
|
|
|
{
|
|
|
|
|
get { return GetHeaderValue("User-Agent"); }
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
RequestHeaders["User-Agent"] = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-03-14 12:52:53 -07:00
|
|
|
|
|
2014-05-06 19:28:19 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the host.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The host.</value>
|
|
|
|
|
public string Host { get; set; }
|
|
|
|
|
|
2013-03-14 12:52:53 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the progress.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The progress.</value>
|
|
|
|
|
public IProgress<double> Progress { get; set; }
|
2013-05-06 12:31:57 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2013-05-27 08:02:16 -07:00
|
|
|
|
/// Gets or sets a value indicating whether [enable HTTP compression].
|
2013-05-06 12:31:57 -07:00
|
|
|
|
/// </summary>
|
2013-05-27 08:02:16 -07:00
|
|
|
|
/// <value><c>true</c> if [enable HTTP compression]; otherwise, <c>false</c>.</value>
|
2013-05-20 11:03:09 -07:00
|
|
|
|
public bool EnableHttpCompression { get; set; }
|
|
|
|
|
|
2013-09-17 19:43:34 -07:00
|
|
|
|
public Dictionary<string, string> RequestHeaders { get; private set; }
|
|
|
|
|
|
2013-12-16 11:44:03 -07:00
|
|
|
|
public string RequestContentType { get; set; }
|
|
|
|
|
|
|
|
|
|
public string RequestContent { get; set; }
|
2014-05-04 21:36:45 -07:00
|
|
|
|
public byte[] RequestContentBytes { get; set; }
|
2013-12-16 11:44:03 -07:00
|
|
|
|
|
2014-02-13 09:38:43 -07:00
|
|
|
|
public bool BufferContent { get; set; }
|
2014-02-25 21:38:21 -07:00
|
|
|
|
|
2014-03-14 10:09:22 -07:00
|
|
|
|
public bool LogRequest { get; set; }
|
2014-04-07 21:17:18 -07:00
|
|
|
|
|
|
|
|
|
public bool LogErrorResponseBody { get; set; }
|
2014-05-16 10:11:07 -07:00
|
|
|
|
public bool EnableKeepAlive { get; set; }
|
2014-02-25 21:38:21 -07:00
|
|
|
|
|
2013-09-17 19:43:34 -07:00
|
|
|
|
private string GetHeaderValue(string name)
|
|
|
|
|
{
|
|
|
|
|
string value;
|
|
|
|
|
|
|
|
|
|
RequestHeaders.TryGetValue(name, out value);
|
|
|
|
|
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-27 08:02:16 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="HttpRequestOptions"/> class.
|
|
|
|
|
/// </summary>
|
2013-05-20 11:03:09 -07:00
|
|
|
|
public HttpRequestOptions()
|
|
|
|
|
{
|
|
|
|
|
EnableHttpCompression = true;
|
2014-02-13 09:38:43 -07:00
|
|
|
|
BufferContent = true;
|
2014-05-16 10:11:07 -07:00
|
|
|
|
EnableKeepAlive = true;
|
2013-09-17 19:43:34 -07:00
|
|
|
|
|
|
|
|
|
RequestHeaders = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
2014-03-14 10:09:22 -07:00
|
|
|
|
|
|
|
|
|
LogRequest = true;
|
2013-05-20 11:03:09 -07:00
|
|
|
|
}
|
2013-03-14 12:52:53 -07:00
|
|
|
|
}
|
|
|
|
|
}
|