Ejemplo n.º 1
0
 /// <summary>
 /// Tracks a custom data without cache support
 /// </summary>
 /// <param name="CustomDataName">
 /// Self-explanatory ;)
 /// </param>
 /// <param name="CustomDataValue">
 /// Self-explanatory ;)
 /// </param>
 /// <returns>
 /// 
 /// </returns>
 public bool TrackCustomDataR(string CustomDataName, string CustomDataValue)
 {
     lock (ObjectLock)
     {
         if (Started)
         {
             var json = new CustomDataRJson(CustomDataName, CustomDataValue, GetFlowNumber(), ApplicationId, ApplicationVersion);
             if (!string.IsNullOrEmpty(ApplicationId) && (Enabled == true))
             {
                 int ErrorID;
                 Services.PostData(out ErrorID, Settings.ApiEndpoint, JsonBuilder.GetJsonFromHashTable(json.GetJsonHashTable()));
                 return ErrorID == 0;
             }
             else
             {
                 return false;
             }
         }
         else
         {
             return false;
         }
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Try to track real time customized data and caches it to send later if any network error occurs.
 /// </summary>
 /// <param name="CustomDataName">
 /// A <see cref="System.String"/>
 /// </param>
 /// <param name="CustomDataValue">
 /// A <see cref="System.String"/>
 /// </param>
 /// <returns>
 /// A <see cref="System.Boolean"/>
 /// </returns>
 public bool TrackCachedCustomDataR(string CustomDataName, string CustomDataValue)
 {
     try
     {
         TrackCustomDataR(CustomDataName,CustomDataValue);
     }
     catch (Exception)
     {
         var json = new CustomDataRJson(CustomDataName, CustomDataValue, GetFlowNumber(), ApplicationId, ApplicationVersion);
         JSON.Add(JsonBuilder.GetJsonFromHashTable(json.GetJsonHashTable()));
         return true;
     }
     return false;
 }