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.
56 lines
1.6 KiB
56 lines
1.6 KiB
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
{
|
|
/// <summary>
|
|
/// Interface IHttpServer
|
|
/// </summary>
|
|
public interface IHttpServer : IDisposable
|
|
{
|
|
/// <summary>
|
|
/// Gets the URL prefix.
|
|
/// </summary>
|
|
/// <value>The URL prefix.</value>
|
|
IEnumerable<string> UrlPrefixes { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the certificate path.
|
|
/// </summary>
|
|
/// <value>The certificate path.</value>
|
|
string CertificatePath { get; }
|
|
|
|
/// <summary>
|
|
/// Starts the specified server name.
|
|
/// </summary>
|
|
/// <param name="urlPrefixes">The URL prefixes.</param>
|
|
/// <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);
|
|
|
|
/// <summary>
|
|
/// Stops this instance.
|
|
/// </summary>
|
|
void Stop();
|
|
|
|
/// <summary>
|
|
/// Occurs when [web socket connected].
|
|
/// </summary>
|
|
event EventHandler<WebSocketConnectEventArgs> WebSocketConnected;
|
|
|
|
/// <summary>
|
|
/// Occurs when [web socket connecting].
|
|
/// </summary>
|
|
event EventHandler<WebSocketConnectingEventArgs> WebSocketConnecting;
|
|
|
|
/// <summary>
|
|
/// Inits this instance.
|
|
/// </summary>
|
|
void Init(IEnumerable<IRestfulService> services);
|
|
|
|
/// <summary>
|
|
/// If set, all requests will respond with this message
|
|
/// </summary>
|
|
string GlobalResponse { get; set; }
|
|
}
|
|
} |