IConfigurationSystem.cs 302 B

123456789101112131415161718
  1. //
  2. // System.Configuration.IConfigurationSystem
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc (http://www.ximian.com)
  8. //
  9. namespace System.Configuration
  10. {
  11. public interface IConfigurationSystem
  12. {
  13. object GetConfig (string configKey);
  14. void Init ();
  15. }
  16. }