aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Services/IHttpRequest.cs
blob: 4dccd2d686a8d63adb64167e981b80223b0eb8fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma warning disable CS1591

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; }
    }
}