I have a pretty big JObject with a lot of nested properties. I use this object to populate some UI where I can make changes to each value. Now to my question: How can i search this JObject for a property(i have the Jtoken path) and change its value? The property can be pretty deep so I need to also search the nested properties. For example:
Property1
Property2
--->NestedProperty1
--->NestedProperty2
--->Propery im searching for
Property3
Also, the properties are not all of the same type, there are JValues, JObjects, JArrays.
I'm pretty new to JObjects so Im not sure if there is an easy way that I'm just not seeing. Thanks in advance.