Example #1
0
 public void LoadFromCache(string path)
 {
     try
     {
         AttributeRegister.Register(this);
         this.StartFromCache(path);
         this.End();
     }
     catch (Exception ex)
     {
         LogMgr.LogException(ex);
     }
 }
Example #2
0
 public void SaveToCache(string path)
 {
     try
     {
         AttributeRegister.Register(this);
         this.StartToCache(this.GetType(), path);
         this.End();
     }
     catch (Exception ex)
     {
         LogMgr.LogException(ex);
     }
 }
Example #3
0
 public void LoadFromCache(RegisterCachedTypes types)
 {
     try
     {
         AttributeRegister.Register(this);
         this.StartFromCache(types);
         this.End();
     }
     catch (Exception ex)
     {
         LogMgr.LogException(ex);
     }
 }
Example #4
0
 public void Initialite()
 {
     try
     {
         AttributeRegister.Register(this);
         this.Start(this.GetType());
         this.End();
         this.m_binit = true;
     }
     catch (Exception ex)
     {
         LogMgr.LogException(ex);
         this.m_binit = false;
     }
 }