jellyfin/MediaBrowser.Controller/Net/IHttpServer.cs

49 lines
1.3 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2016-10-26 08:01:42 +02:00
using MediaBrowser.Model.Services;
2013-12-07 16:52:38 +01:00
namespace MediaBrowser.Controller.Net
{
/// <summary>
/// Interface IHttpServer
/// </summary>
public interface IHttpServer : IDisposable
{
/// <summary>
/// Gets the URL prefix.
/// </summary>
/// <value>The URL prefix.</value>
2014-01-09 05:44:51 +01:00
IEnumerable<string> UrlPrefixes { get; }
/// <summary>
/// Starts the specified server name.
/// </summary>
2014-01-09 05:44:51 +01:00
/// <param name="urlPrefixes">The URL prefixes.</param>
2016-11-11 04:29:51 +01:00
void StartServer(IEnumerable<string> urlPrefixes);
/// <summary>
/// Stops this instance.
/// </summary>
void Stop();
/// <summary>
/// Occurs when [web socket connected].
/// </summary>
event EventHandler<WebSocketConnectEventArgs> WebSocketConnected;
2015-03-08 20:48:30 +01:00
/// <summary>
/// Occurs when [web socket connecting].
/// </summary>
event EventHandler<WebSocketConnectingEventArgs> WebSocketConnecting;
/// <summary>
/// Inits this instance.
/// </summary>
2016-10-26 08:01:42 +02:00
void Init(IEnumerable<IService> services);
2015-09-14 01:07:54 +02:00
/// <summary>
/// If set, all requests will respond with this message
/// </summary>
string GlobalResponse { get; set; }
}
}