I got a couple different formats that come in but I can\'t figure out how to handle them all because when I try to find by key json.net crashes. I was hoping it would just r
Or you can simply use the ContainsKey on a JsonObject. Here is a sample of my own code with similar problem to yours:
foreach (JsonObject feed in data)
{
var fbFeed = new FacebookFeeds();
if (feed.ContainsKey("message"))
fbFeed.Message = (string)feed["message"];
if (feed.ContainsKey("story"))
fbFeed.Message = (string)feed["story"];
if (feed.ContainsKey("picture"))
fbFeed.Message = (string)feed["picture"];
fbFeeds.Add(fbFeed);
}