public bool Copy(string key, ref bool dest) { bool flag; JSONValue jSONValue = this.Get(key, out flag); if (flag && !jSONValue.IsNull()) { dest = jSONValue.AsBool(false); } return(flag); }