mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Controller.Net;
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Threading;
 | 
						|
using System.Threading.Tasks;
 | 
						|
using MediaBrowser.Model.Services;
 | 
						|
using Emby.Server.Implementations.Net;
 | 
						|
 | 
						|
namespace Emby.Server.Implementations.HttpServer
 | 
						|
{
 | 
						|
    public interface IHttpListener : IDisposable
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the error handler.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The error handler.</value>
 | 
						|
        Func<Exception, IRequest, bool, bool, Task> ErrorHandler { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the request handler.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The request handler.</value>
 | 
						|
        Func<IHttpRequest, string, string, string, CancellationToken, Task> RequestHandler { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the web socket handler.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The web socket handler.</value>
 | 
						|
        Action<WebSocketConnectEventArgs> WebSocketConnected { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the web socket connecting.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The web socket connecting.</value>
 | 
						|
        Action<WebSocketConnectingEventArgs> WebSocketConnecting { get; set; }
 | 
						|
        
 | 
						|
        /// <summary>
 | 
						|
        /// Starts this instance.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="urlPrefixes">The URL prefixes.</param>
 | 
						|
        void Start(IEnumerable<string> urlPrefixes);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Stops this instance.
 | 
						|
        /// </summary>
 | 
						|
        Task Stop();
 | 
						|
    }
 | 
						|
}
 |