JsonPropertyAttribute property setting

April 6, 2024 ยท View on GitHub

This sample uses Argon.JsonPropertyAttribute to change how the property value is serialized.

public class Vessel
{
    public string Name { get; set; }
    public string Class { get; set; }

    [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
    public DateTime? LaunchDate { get; set; }
}

snippet source | anchor

var vessel = new Vessel
{
    Name = "Red October",
    Class = "Typhoon"
};

var json = JsonConvert.SerializeObject(vessel, Formatting.Indented);

Console.WriteLine(json);
// {
//   "Name": "Red October",
//   "Class": "Typhoon"
// }

snippet source | anchor