This might be a simple question, but I can't find the solution to it.
I'm doing a parse with newtonsoft from a Json string, with multiple depth levels:
{"lineage":
{"type": "raw",
"source": "OPC_UA",
"self":
{"uuid":"73dd8608-29b2-44ed-a924-b3d3ba3d0345"}},
"data":
{"OPC_UA":
{"Sensor1":false,
"Sensor2":false,
"Sensor3":false,
"Sensor4":false,
"Sensor5":false,
"Snelheid":0}}}
Now my question is, how do I get a value from a lower level than lineage or data? trough the get value method?
for example I tried getvalue("source")
, but this returned nothing.