| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 | 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; }    }}
 |