Ejemplo n.º 1
0
 public static INode ResolveNodeByPaths(this ObjectNode bnode, IEnumerable <string> paths, bool failIfResolveFails = true)
 {
     return(bnode.ResolveNodeByPaths(paths.ToArray(), failIfResolveFails));
 }
Ejemplo n.º 2
0
 public static INode ResolveNodeByPath(this ObjectNode bnode, string path, bool failIfResolveFails = true)
 {
     return(bnode.ResolveNodeByPaths(path.SplitJsonPath(), failIfResolveFails));
 }