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.
40 lines
1.0 KiB
40 lines
1.0 KiB
6 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using MediaBrowser.Model.Services;
|
||
|
using MediaBrowser.Model.Events;
|
||
|
|
||
|
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; }
|
||
|
}
|
||
|
}
|