-
Notifications
You must be signed in to change notification settings - Fork 148
serialization
Tatham Oddie edited this page Nov 19, 2013
·
4 revisions
The supplied object instance will be serialized to JSON using the JSON.NET library. If you want to influence this process, you can do so using their attributes:
public class MyNode
{
[JsonProperty("Bar")]
public string Foo { get; set; }
[JsonIgnore]
public string Bar { get; set; }
}