예제 #1
0
 /// <summary>
 ///     NOTE: Code-generation-invoked method, method name and parameter order matters
 /// </summary>
 /// <param name="target">the dictionary into which the result will be placed</param>
 /// <param name="name">the name (key) to use</param>
 /// <param name="element">the value in its "json" element form</param>
 public static void AddGeneralJson(
     IDictionary <string, object> target,
     string name,
     JsonElement element)
 {
     target[name] = element.ElementToValue();
 }