I have big JSON message that I get from HttpClient GetAsync as a stream. The returned JSON is an array of objects.
I need to parse only one attribute from the first JSON object, and one attribute from the last JSON object. What will be the best way to do it performance wise?
I use Newtonsoft JSON.
I don't want to parse the whole JSON string, just parse specific attributes.