diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-23 17:31:51 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-23 17:31:51 -0500 |
| commit | 2e4db7554041ecf481d3a38656fccc309e13eb5b (patch) | |
| tree | 73c064988db630f97edc18bbc3ea5fac9132483b /MediaBrowser.Common/Net/IHttpServer.cs | |
| parent | 1a423c43b4284848e155fc4a060ef7061b084ed8 (diff) | |
extracted http server, web socket server and udp server dependancies
Diffstat (limited to 'MediaBrowser.Common/Net/IHttpServer.cs')
| -rw-r--r-- | MediaBrowser.Common/Net/IHttpServer.cs | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Net/IHttpServer.cs b/MediaBrowser.Common/Net/IHttpServer.cs new file mode 100644 index 000000000..a640fb262 --- /dev/null +++ b/MediaBrowser.Common/Net/IHttpServer.cs @@ -0,0 +1,44 @@ +using System; + +namespace MediaBrowser.Common.Net +{ + /// <summary> + /// Interface IHttpServer + /// </summary> + public interface IHttpServer : IDisposable + { + /// <summary> + /// Gets the URL prefix. + /// </summary> + /// <value>The URL prefix.</value> + string UrlPrefix { get; } + + /// <summary> + /// Starts the specified server name. + /// </summary> + /// <param name="urlPrefix">The URL.</param> + void Start(string urlPrefix); + + /// <summary> + /// Gets a value indicating whether [supports web sockets]. + /// </summary> + /// <value><c>true</c> if [supports web sockets]; otherwise, <c>false</c>.</value> + bool SupportsWebSockets { get; } + + /// <summary> + /// Stops this instance. + /// </summary> + void Stop(); + + /// <summary> + /// Gets or sets a value indicating whether [enable HTTP request logging]. + /// </summary> + /// <value><c>true</c> if [enable HTTP request logging]; otherwise, <c>false</c>.</value> + bool EnableHttpRequestLogging { get; set; } + + /// <summary> + /// Occurs when [web socket connected]. + /// </summary> + event EventHandler<WebSocketConnectEventArgs> WebSocketConnected; + } +}
\ No newline at end of file |
