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