aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Services/IHttpRequest.cs
blob: 3ea65195cdf45cff357bbef4f2ba941b3534777c (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>
        /// Gets the HTTP Verb.
        /// </summary>
        string HttpMethod { get; }

        /// <summary>
        /// Gets the value of the Accept HTTP Request Header.
        /// </summary>
        string Accept { get; }
    }
}