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.
16 lines
511 B
16 lines
511 B
4 years ago
|
namespace MediaBrowser.Common.Configuration
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// A configuration store that can be validated.
|
||
|
/// </summary>
|
||
|
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);
|
||
|
}
|
||
|
}
|