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