mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			511 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			511 B
		
	
	
	
		
			C#
		
	
	
	
	
	
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);
 | 
						|
    }
 | 
						|
}
 |