IGenericConfig.cs 367 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace OpenSim.Framework.Interfaces
  5. {
  6. public interface IGenericConfig
  7. {
  8. void LoadData();
  9. string GetAttribute(string attributeName);
  10. bool SetAttribute(string attributeName, string attributeValue);
  11. void Commit();
  12. void Close();
  13. }
  14. }