19 lines
401 B
C#
19 lines
401 B
C#
#pragma warning disable CS1591
|
|
#pragma warning disable SA1600
|
|
|
|
namespace MediaBrowser.Model.Services
|
|
{
|
|
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; }
|
|
}
|
|
}
|