mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			402 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			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);
 | 
						|
    }
 | 
						|
}
 |