JSON.NET deserialize a specific property

The JSON isn’t too large, so I’ll take Matt Johnson’s suggestion and deserialize the whole thing. Thanks to jcwrequests answer, I was able to use this method:

var jObject = JObject.Parse(json);
var jToken = jObject.GetValue("PropTwo");
PropTwoClass value = jToken.ToObject(typeof(PropTwoClass));

Leave a Comment