2019-01-13 21:02:23 +01:00
|
|
|
namespace MediaBrowser.Model.Services
|
2018-12-27 18:27:57 -05:00
|
|
|
{
|
|
|
|
|
public interface IHttpRequest : IRequest
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The HTTP Verb
|
|
|
|
|
/// </summary>
|
|
|
|
|
string HttpMethod { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The value of the Accept HTTP Request Header
|
|
|
|
|
/// </summary>
|
|
|
|
|
string Accept { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|