IHttpRequest.cs 382 B

1234567891011121314151617
  1. #pragma warning disable CS1591
  2. namespace MediaBrowser.Model.Services
  3. {
  4. public interface IHttpRequest : IRequest
  5. {
  6. /// <summary>
  7. /// Gets the HTTP Verb.
  8. /// </summary>
  9. string HttpMethod { get; }
  10. /// <summary>
  11. /// Gets the value of the Accept HTTP Request Header.
  12. /// </summary>
  13. string Accept { get; }
  14. }
  15. }