You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using MediaBrowser.Model.Events;
|
|
|
|
using MediaBrowser.Model.Services;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Interface IHttpServer
|
|
|
|
/// </summary>
|
|
|
|
public interface IHttpServer : IDisposable
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the URL prefix.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The URL prefix.</value>
|
|
|
|
string[] UrlPrefixes { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Stops this instance.
|
|
|
|
/// </summary>
|
|
|
|
void Stop();
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Occurs when [web socket connected].
|
|
|
|
/// </summary>
|
|
|
|
event EventHandler<GenericEventArgs<IWebSocketConnection>> WebSocketConnected;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Inits this instance.
|
|
|
|
/// </summary>
|
|
|
|
void Init(IEnumerable<IService> services, IEnumerable<IWebSocketListener> listener);
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// If set, all requests will respond with this message
|
|
|
|
/// </summary>
|
|
|
|
string GlobalResponse { get; set; }
|
|
|
|
}
|
|
|
|
}
|