| 123456789101112131415161718 | #pragma warning disable CS1591#pragma warning disable SA1600namespace 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; }    }}
 |