public static string SetJsonString(this DealHeader thdr, IDictionary <string, object> jsonbag)
 {
     return(JsonParser.ToJson(jsonbag, thdr.Context.Complexity));
 }
Beispiel #2
0
 public static string SetJsonString(this DealMessage tmsg, IDictionary <string, object> jsonbag)
 {
     return(JsonParser.ToJson(jsonbag));
 }
        public static string SetJsonString(this DealHeader thdr)
        {
            IDictionary <string, object> toJson = thdr.SetJsonBag();

            return(JsonParser.ToJson(toJson, thdr.Context.Complexity));
        }
Beispiel #4
0
        public static string SetJsonString(this DealMessage tmsg)
        {
            IDictionary <string, object> toJson = tmsg.SetJsonBag();

            return(JsonParser.ToJson(toJson));
        }