I want to deserialize a JSON string which does not necessarily contain data for every member, e.g:
public class MyStructure { public string Field1; public string Field2; }
Suppose I have an instance:
Field1: "data1" Field2: "data2"
and I deserialize a string:
{ "Field1": "newdata1" }
The result should be
Field1: "newdata1" Field2: "data2"
Framework JavascriptSerializer
and JSON.NET
both return new objects in their deserialize methods, so the only way I can think of doing this directly would be to compare the deserialized object with the existing one using reflection which seems like a lot of unnecessary overhead. Ideally, some software would have a method in which I passed an existing instance of an object, and only those members which existed in the string would get updated. The point here is that I would like to be able to pass only data which has changed to the server, and update an existing object.
Is this possible using either of these tools, and if not, any suggestions on how to approach the problem?
After poking around the source code (so much easier than reading the documentation, eh?) JSON.NET
does exactly what I want already:
JsonConvert.PopulateObject(string, object)
See Json.NET: Populate an Object
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With