DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
IConfigurable.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace Deveel.Data.Configuration {
8  public interface IConfigurable {
19  bool IsConfigured { get; }
20 
28  void Configure(IConfiguration config);
29  }
30 }
Marks a component as configurable and passes the configuration object that is used to load the config...
Definition: IConfigurable.cs:8
Defines the contract for the configuration node of a component within the system or of the system its...