I have the following...
JArray clients = (JArray)clientsParsed[\"objects\"]; foreach (JObject item in clients.Children()) { // etc.. SQL params stuff...
You can proceed as follows to check whether a JToken Value is null
JToken token = jObject["key"]; if(token.Type == JTokenType.Null) { // Do your logic }