2013-02-23 15:31:51 -07:00
|
|
|
using System;
|
2013-02-25 20:43:04 -07:00
|
|
|
using System.Collections.Generic;
|
2013-02-23 15:31:51 -07:00
|
|
|
|
2013-12-07 08:52:38 -07:00
|
|
|
namespace MediaBrowser.Controller.Net
|
2013-02-23 15:31:51 -07:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Interface IHttpServer
|
|
|
|
/// </summary>
|
|
|
|
public interface IHttpServer : IDisposable
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the URL prefix.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The URL prefix.</value>
|
2014-01-08 21:44:51 -07:00
|
|
|
IEnumerable<string> UrlPrefixes { get; }
|
2013-02-23 15:31:51 -07:00
|
|
|
|
2015-01-18 21:29:57 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the certificate path.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The certificate path.</value>
|
|
|
|
string CertificatePath { get; }
|
|
|
|
|
2013-02-23 15:31:51 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Starts the specified server name.
|
|
|
|
/// </summary>
|
2014-01-08 21:44:51 -07:00
|
|
|
/// <param name="urlPrefixes">The URL prefixes.</param>
|
2015-01-06 20:36:42 -07:00
|
|
|
/// <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);
|
2013-02-23 15:31:51 -07:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Stops this instance.
|
|
|
|
/// </summary>
|
|
|
|
void Stop();
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Occurs when [web socket connected].
|
|
|
|
/// </summary>
|
|
|
|
event EventHandler<WebSocketConnectEventArgs> WebSocketConnected;
|
2013-02-25 20:43:04 -07:00
|
|
|
|
2015-03-08 12:48:30 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Occurs when [web socket connecting].
|
|
|
|
/// </summary>
|
|
|
|
event EventHandler<WebSocketConnectingEventArgs> WebSocketConnecting;
|
|
|
|
|
2013-02-25 20:43:04 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Inits this instance.
|
|
|
|
/// </summary>
|
|
|
|
void Init(IEnumerable<IRestfulService> services);
|
2015-09-13 16:07:54 -07:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// If set, all requests will respond with this message
|
|
|
|
/// </summary>
|
|
|
|
string GlobalResponse { get; set; }
|
2013-02-23 15:31:51 -07:00
|
|
|
}
|
|
|
|
}
|