| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | using MediaBrowser.Common.Plugins;using System.IO;namespace MediaBrowser.Controller.Plugins{    /// <summary>    /// Interface IConfigurationPage    /// </summary>    public interface IPluginConfigurationPage    {        /// <summary>        /// Gets the name.        /// </summary>        /// <value>The name.</value>        string Name { get; }        /// <summary>        /// Gets the type of the configuration page.        /// </summary>        /// <value>The type of the configuration page.</value>        ConfigurationPageType ConfigurationPageType { get; }        /// <summary>        /// Gets the plugin.        /// </summary>        /// <value>The plugin.</value>        IPlugin Plugin { get; }        /// <summary>        /// Gets the HTML stream.        /// </summary>        /// <returns>Stream.</returns>        Stream GetHtmlStream();    }    /// <summary>    /// Enum ConfigurationPageType    /// </summary>    public enum ConfigurationPageType    {        /// <summary>        /// The plugin configuration        /// </summary>        PluginConfiguration,        /// <summary>        /// The none        /// </summary>        None    }}
 |