jellyfin/MediaBrowser.Model/Services/IHttpResponse.cs

25 lines
572 B
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
using System;
using System.Collections.Generic;
using System.Net;
using System.Text;
using System.Threading.Tasks;
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-08 00:27:46 +01:00
/// Removes all pending Set-Cookie instructions
2018-12-28 00:27:57 +01:00
/// </summary>
void ClearCookies();
}
}