aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Services/IHttpRequest.cs
blob: daf91488f0d535fdb170d23385776aac94391a7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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; }
    }
}