2019-01-13 20:02:23 +00:00
|
|
|
using System.Net;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Services
|
|
|
|
{
|
|
|
|
public interface IHttpResponse : IResponse
|
|
|
|
{
|
|
|
|
//ICookies Cookies { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Adds a new Set-Cookie instruction to Response
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="cookie"></param>
|
|
|
|
void SetCookie(Cookie cookie);
|
|
|
|
|
|
|
|
/// <summary>
|
2019-01-07 23:27:46 +00:00
|
|
|
/// Removes all pending Set-Cookie instructions
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
void ClearCookies();
|
|
|
|
}
|
|
|
|
}
|