示例#1
0
        public bool Initialise()
        {
            storeManager = new ObjectStoreManager();
            bool result = storeManager.Init();

            DebugNormal("Initialise result: " + result.ToString());
            return(result);
        }
示例#2
0
        public bool Initialize(ref string key)
        {
            if (key != "Wilkinson")
            {
                return(false);
            }

            DebugNormal("Initialising Store.");
            storeManager              = new ObjectStoreManager();
            storeManager.DebugReport += new EventHandler <DebugReportEventArgs>(storeManager_DebugReport);
            // Initialise Store Manager
            return(storeManager.Init());
        }
示例#3
0
 public void Dispose()
 {
     storeManager.Dispose();
     storeManager = null;
 }