using Newtonsoft.Json.Linq; using System.Collections.Generic; namespace RNCamera { static class JObjectExtensions { public static bool ContainsKey(this JObject json, string key) { return ((IDictionary)json).ContainsKey(key); } } }