Basically I'm doing some webscraping using HTMLAgilityPack and I'm getting a huge json as a string, which I then convert into a JObject
using the json.net package.
Now somewhere deeply within said JObject
there are some objects I want. But since it is very deeply nested, I wanted to know if there is actually a way to get to those objects, not knowing where exactly within the JObject
they are. All I know is their name. Is there any way for me to do some kind of search within the whole JObject
, just knowing the object/property names I'm looking for?
Sadly I wasn't able to find any related questions/documented methods I could make use of.