mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			453 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			453 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
namespace MediaBrowser.Controller.Session
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Interface ISesssionControllerFactory
 | 
						|
    /// </summary>
 | 
						|
    public interface ISessionControllerFactory
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the session controller.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="session">The session.</param>
 | 
						|
        /// <returns>ISessionController.</returns>
 | 
						|
        ISessionController GetSessionController(SessionInfo session);
 | 
						|
    }
 | 
						|
}
 |