mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Net
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Interface IHttpServer
 | |
|     /// </summary>
 | |
|     public interface IHttpServer : IDisposable
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets the URL prefix.
 | |
|         /// </summary>
 | |
|         /// <value>The URL prefix.</value>
 | |
|         IEnumerable<string> UrlPrefixes { get; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the certificate path.
 | |
|         /// </summary>
 | |
|         /// <value>The certificate path.</value>
 | |
|         string CertificatePath { get; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Starts the specified server name.
 | |
|         /// </summary>
 | |
|         /// <param name="urlPrefixes">The URL prefixes.</param>
 | |
|         /// <param name="certificatePath">If an https prefix is specified, 
 | |
|         /// the ssl certificate localtion on the file system.</param>
 | |
|         void StartServer(IEnumerable<string> urlPrefixes, string certificatePath);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Stops this instance.
 | |
|         /// </summary>
 | |
|         void Stop();
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Occurs when [web socket connected].
 | |
|         /// </summary>
 | |
|         event EventHandler<WebSocketConnectEventArgs> WebSocketConnected;
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Occurs when [web socket connecting].
 | |
|         /// </summary>
 | |
|         event EventHandler<WebSocketConnectingEventArgs> WebSocketConnecting;
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Inits this instance.
 | |
|         /// </summary>
 | |
|         void Init(IEnumerable<IRestfulService> services);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// If set, all requests will respond with this message
 | |
|         /// </summary>
 | |
|         string GlobalResponse { get; set; }
 | |
|     }
 | |
| } |