You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
844 B
37 lines
844 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Net;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Model.Services
|
|
{
|
|
public interface IHttpResult : IHasHeaders
|
|
{
|
|
/// <summary>
|
|
/// The HTTP Response Status
|
|
/// </summary>
|
|
int Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// The HTTP Response Status Code
|
|
/// </summary>
|
|
HttpStatusCode StatusCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// The HTTP Response ContentType
|
|
/// </summary>
|
|
string ContentType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Response DTO
|
|
/// </summary>
|
|
object Response { get; set; }
|
|
|
|
/// <summary>
|
|
/// Holds the request call context
|
|
/// </summary>
|
|
IRequest RequestContext { get; set; }
|
|
}
|
|
}
|