By default, all public
properties and fields are included in the serialized JSON. To omit a property or
field, decorate it with the JsonIgnore attribute.
public class Product
{
public string
Name { get; set; }
public decimal
Price { get; set; }
[JsonIgnore]
public int
ProductCode { get; set; } // omitted
}
No comments:
Post a Comment