I've tried following the example Parsing json in C# without knowing indexes. I keep hitting an error though:
Newtonsoft.Json.Linq.JObject' does not contain a definition for ip_addresses
What I am trying to achieve is to parse the following JSON and add each ip address to an ObservableCollection. It's all very well doing it normally if I knew the keys but the IP addresses can be named anything.
Here is the code that I am working on so far and the reason that the IP address has it's own class is because there is a lot more going to be done with it later in the app.:
try
{
dynamic jObj = JsonConvert.DeserializeObject(e.Result);
foreach (var child in jObj.ip_addresses.Children())
{
ips.Add(new IpAddresses() { ip = child });
}
}
catch
{
MessageBox.Show("Generic error message");
}
public class IpAddresses
{
public string ip { get; set; }
}
And this is the JSON:
{
"id": "reallysimpleid",
"label": "server name",
"ip_addresses": {
"private0_v4": "100.100.100.100",
"access_ip0_v4": "100.100.100.100",
"public0_v6": "1000:1000:7805:0113:9073:8c63:1000:1000",
"access_ip1_v6": "1000:1000:7805:0113:9073:8c63:1000:1000",
"public1_v4": "100.100.100.100"
},
"metadata": null,
"managed": false,
"uri": "https://www.awebsite.com",
"agent_id": null,
"created_at": 1360960027217,
"updated_at": 1360960027217
}