A webservice (that I do not own/control) returns (as Json) varying amounts of data for calls with different parameters. Some of these data fields are common.
Platform: .NET/C#, with Newtonsoft.Json library.
I cannot define individual classes for each of these variations.
So, I was wondering if there is a way to tell the Newtonsoft.Json Deserialize() methods that I want them to put the remaining Json objects into a particular property -- possibly a Dictionary<string, object>
?