Ejemplo n.º 1
0
 /// <summary>
 /// Initializes the helper object for the serialization of content in JSON
 /// </summary>
 /// <returns>the helper object correctly initialized</returns>
 public static fastJSON.JSON InitJSONUtils()
 {
     fastJSON.JSON res = fastJSON.JSON.Instance;
     res.SerializeNullValues    = true;
     res.ShowReadOnlyProperties = true;
     res.UseUTCDateTime         = true;
     res.IndentOutput           = false;
     res.UsingGlobalTypes       = true;
     res.UseSerializerExtension = false;
     return(res);
 }