Exemplo n.º 1
0
 public static JsonDiff Create(JsonTreeNode node, JsonDiffType diffType, string msg)
 {
     return(new JsonDiff
     {
         Path = JsonPointer.Create(node),
         DiffType = diffType,
         Msg = msg,
     });
 }
Exemplo n.º 2
0
 public static JsonDiff Create <T>(ListTreeNode <T> node, JsonDiffType diffType, string msg)
     where T : IListTreeItem, IValue <T>
 {
     return(new JsonDiff
     {
         Path = JsonPointer.Create(node),
         DiffType = diffType,
         Msg = msg,
     });
 }
Exemplo n.º 3
0
 public JsonDiff(JsonNode node, JsonDiffType diffType, string msg)
 {
     Path     = new JsonPointer(node);
     DiffType = diffType;
     Msg      = msg;
 }