1234567891011121314151617181920 |
- using System.Collections.Generic;
- using Aitex.Core.RT.ConfigCenter;
- namespace Aitex.Core.RT.SCCore
- {
- public interface ISCManager
- {
- bool Initialize();
- void Terminate();
- object GetItemValue(string name);
- T GetItem<T>(string name) where T : class;
- SCString GetStringItem(string name);
- bool UpdateConfiguration(string groupName, List<ConfigEntry> lstEntry);
- string GetXmlConfig(string path);
- void GenerateEnumName();
- void SetItemValue(string name, object value);
- }
- }
|