Esempio n. 1
0
 public void WriteSnapshot(Core.Snapshot sshot)
 {
     try
     {
         if (!string.IsNullOrEmpty(Global.Config.StorageService))
         {
             WebRequest request = HttpWebRequest.Create(Global.Config.StorageService.Replace("{0}", "snapshot"));
             request.Method = "POST";
             //request.GetRequestStream();
             WebResponse response = request.GetResponse();
             //response.GetResponseStream();
         }
         else
         {
             _localStorage.WriteSnapshot(sshot);
         }
     }
     catch (Exception ex) { TraceLogger.Instance.WriteException(ex); throw; }
 }
Esempio n. 2
0
 public void WriteSnapshot(Core.Snapshot sshot)
 {
 }
Esempio n. 3
0
 public void WriteSnapshot(Core.Snapshot sshot)
 {
     throw new NotImplementedException();
 }