I am using Json.net in my MVC 4 program.
I have an object item
of class Item
.
I did: string j = JsonConvert.SerializeObject(item);
Now I want to add an extra property, like "feeClass" : "A"
into j
.
How can I use Json.net to achieve this?
JsonPropertyAttribute indicates that a property should be serialized when member serialization is set to opt-in. It includes non-public properties in serialization and deserialization. It can be used to customize type name, reference, null, and default value handling for the property value.
JSON is a format that encodes objects in a string. Serialization means to convert an object into that string, and deserialization is its inverse operation (convert string -> object).
Apply a [JsonIgnore] attribute to the property that you do not want to be serialized.
JsonObjectAttribute is used to support Json schema definition. -- while these three properties are used only for schema definition, most other properties of JsonObjectAttribute affect serialization as well.
You have a few options.
The easiest way, as @Manvik suggested, is simply to add another property to your class and set its value prior to serializing.
If you don't want to do that, the next easiest way is to load your object into a JObject
, append the new property value, then write out the JSON from there. Here is a simple example:
class Item { public int ID { get; set; } public string Name { get; set; } } class Program { static void Main(string[] args) { Item item = new Item { ID = 1234, Name = "FooBar" }; JObject jo = JObject.FromObject(item); jo.Add("feeClass", "A"); string json = jo.ToString(); Console.WriteLine(json); } }
Here is the output of the above:
{ "ID": 1234, "Name": "FooBar", "feeClass": "A" }
Another possibility is to create a custom JsonConverter
for your Item
class and use that during serialization. A JsonConverter
allows you to have complete control over what gets written during the serialization process for a particular class. You can add properties, suppress properties, or even write out a different structure if you want. For this particular situation, I think it is probably overkill, but it is another option.
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