Can Newtonsoft Json.NET skip serializing empty lists?

In case you didn’t find a solution to this, the answer is remarkably simple when you manage to track it down.

If you are permitted to extend the original class then add a ShouldSerializePropertyName function to it. This should return a Boolean indicating whether or not that property should be serialized for the current instance of the class. In your example this might look like this (not tested but you should get the picture):

public bool ShouldSerializeNumbers()
{
    return _numbers.Count > 0;
}

This approach works for me (albeit in VB.NET). If you’re not allowed to modify the original class then the IContractResolver approach described on the the linked page is the way to go.

Leave a Comment