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