jellyfin/MediaBrowser.Controller/Net/IServiceRequest.cs
2016-10-25 15:02:04 -04:00

15 lines
402 B
C#

using System.Collections.Generic;
using MediaBrowser.Model.Services;
namespace MediaBrowser.Controller.Net
{
public interface IServiceRequest
{
string RemoteIp { get; }
QueryParamCollection Headers { get; }
QueryParamCollection QueryString { get; }
IDictionary<string,object> Items { get; }
void AddResponseHeader(string name, string value);
}
}