namespace MediaBrowser.Controller.Session { /// /// Interface ISesssionControllerFactory /// public interface ISessionControllerFactory { /// /// Gets the session controller. /// /// The session. /// ISessionController. ISessionController GetSessionController(SessionInfo session); } }