public static ResultForRoot FromJson(JsonValue json) { var result = new ResultForRoot( RootPosition.FromJson(json["position"]) ); foreach (Select select in SelectHelper.Values) { var selectStr = select.Stringify(); if (json.ContainsKey(selectStr)) { result.ResultsBySelect.Add(select, SelectResult.FromJson(json[selectStr])); } } if (json.ContainsKey("retractions")) { foreach (KeyValuePair <string, JsonValue> entry in json["retractions"]) { var entries = SegregatedEntries.FromJson(entry.Value); result.Retractions.Add(entry.Key, entries); } } return(result); }
public static QueryResponse FromJson(JsonValue json) { var result = new QueryResponse(); foreach (JsonValue entry in json["results"]) { result.Results.Add(ResultForRoot.FromJson(entry)); } return(result); }