Exemplo n.º 1
0
 public void LoadFromCache(string path)
 {
     try
     {
         AttributeRegister.Register(this);
         this.StartFromCache(path);
         this.End();
     }
     catch (Exception ex)
     {
         LogMgr.LogException(ex);
     }
 }
Exemplo n.º 2
0
 public void SaveToCache(string path)
 {
     try
     {
         AttributeRegister.Register(this);
         this.StartToCache(this.GetType(), path);
         this.End();
     }
     catch (Exception ex)
     {
         LogMgr.LogException(ex);
     }
 }
Exemplo n.º 3
0
 public void LoadFromCache(RegisterCachedTypes types)
 {
     try
     {
         AttributeRegister.Register(this);
         this.StartFromCache(types);
         this.End();
     }
     catch (Exception ex)
     {
         LogMgr.LogException(ex);
     }
 }
Exemplo n.º 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;
     }
 }