public void Search() { var resource = client.Get("/Patient/"); foreach (var child in resource.Children) { if (child.TypeName == "EntryComponent") { foreach (var c in child.Children) { if (c.TypeName == "Patient") { } } } } ShowDialog(); }