Merge pull request #2394 from mark-monteiro/xml-documentation
Add Some XML Documentation
This commit is contained in:
commit
64800de29d
|
@ -1,25 +1,47 @@
|
||||||
#pragma warning disable CS1591
|
|
||||||
#pragma warning disable SA1600
|
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace MediaBrowser.Common.Configuration
|
namespace MediaBrowser.Common.Configuration
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Provides an interface to retrieve a configuration store. Classes with this interface are scanned for at
|
||||||
|
/// application start to dynamically register configuration for various modules/plugins.
|
||||||
|
/// </summary>
|
||||||
public interface IConfigurationFactory
|
public interface IConfigurationFactory
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Get the configuration store for this module.
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>The configuration store.</returns>
|
||||||
IEnumerable<ConfigurationStore> GetConfigurations();
|
IEnumerable<ConfigurationStore> GetConfigurations();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Describes a single entry in the application configuration.
|
||||||
|
/// </summary>
|
||||||
public class ConfigurationStore
|
public class ConfigurationStore
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the unique identifier for the configuration.
|
||||||
|
/// </summary>
|
||||||
public string Key { get; set; }
|
public string Key { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the type used to store the data for this configuration entry.
|
||||||
|
/// </summary>
|
||||||
public Type ConfigurationType { get; set; }
|
public Type ConfigurationType { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A configuration store that can be validated.
|
||||||
|
/// </summary>
|
||||||
public interface IValidatingConfiguration
|
public interface IValidatingConfiguration
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Validation method to be invoked before saving the configuration.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="oldConfig">The old configuration.</param>
|
||||||
|
/// <param name="newConfig">The new configuration.</param>
|
||||||
void Validate(object oldConfig, object newConfig);
|
void Validate(object oldConfig, object newConfig);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,16 +4,22 @@ using System.Threading.Tasks;
|
||||||
namespace MediaBrowser.Controller.Plugins
|
namespace MediaBrowser.Controller.Plugins
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Interface IServerEntryPoint
|
/// Represents an entry point for a module in the application. This interface is scanned for automatically and
|
||||||
|
/// provides a hook to initialize the module at application start.
|
||||||
|
/// The entry point can additionally be flagged as a pre-startup task by implementing the
|
||||||
|
/// <see cref="IRunBeforeStartup"/> interface.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IServerEntryPoint : IDisposable
|
public interface IServerEntryPoint : IDisposable
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Runs this instance.
|
/// Run the initialization for this module. This method is invoked at application start.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task RunAsync();
|
Task RunAsync();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates that a <see cref="IServerEntryPoint"/> should be invoked as a pre-startup task.
|
||||||
|
/// </summary>
|
||||||
public interface IRunBeforeStartup
|
public interface IRunBeforeStartup
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
#pragma warning disable CS1591
|
|
||||||
#pragma warning disable SA1600
|
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace MediaBrowser.Model.Services
|
namespace MediaBrowser.Model.Services
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Identifies a single API endpoint.
|
||||||
|
/// </summary>
|
||||||
[AttributeUsage(AttributeTargets.Property, AllowMultiple = true, Inherited = true)]
|
[AttributeUsage(AttributeTargets.Property, AllowMultiple = true, Inherited = true)]
|
||||||
public class ApiMemberAttribute : Attribute
|
public class ApiMemberAttribute : Attribute
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user