I have a json string that i'm trying to parse with JSON.net, i want to loop and use the names in the komponent
array. This is my json string:
{"Name": "Service","jsonTEMPLATE": "{"komponent": [{"name": "aa"}, {"name": "bb"}]}"}
This is my code using JSON.net
JObject o = JObject.Parse(serviceData);
JToken j = (JToken)o.SelectToken("jsonTEMPLATE");
JArray a = (JArray)j.SelectToken("komponent");
foreach (JObject obj in a)
{
//Do something
}
i get null
from (JArray)j.SelectToken("komponent");
What am i doing wrong?
Your JSON is invalid. You can run it through JSONLint.com to check it. You have quotes around the value of the jsonTEMPLATE
property, which should not be there if it is to interpretted as an object:
{
"Name": "Service",
"jsonTEMPLATE": "{"komponent": [{"name": "aa"}, {"name": "bb"}]}"
}
The JSON needs to look like this for your code to succeed:
{
"Name": "Service",
"jsonTEMPLATE": {"komponent": [{"name": "aa"}, {"name": "bb"}]}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With