mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-29 12:14:49 +03:00
revise endpoint attributes
This commit is contained in:
15
MediaBrowser.Controller/Net/IServiceRequest.cs
Normal file
15
MediaBrowser.Controller/Net/IServiceRequest.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Specialized;
|
||||
|
||||
namespace MediaBrowser.Controller.Net
|
||||
{
|
||||
public interface IServiceRequest
|
||||
{
|
||||
object OriginalRequest { get; }
|
||||
string RemoteIp { get; }
|
||||
NameValueCollection Headers { get; }
|
||||
NameValueCollection QueryString { get; }
|
||||
IDictionary<string,object> Items { get; }
|
||||
void AddResponseHeader(string name, string value);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user