Type s = result.GetType();
bool f = (bool)s.GetField("Succeed").GetValue(result);//Succeed为字段
获取string 类型的json数据中的某一个值
string html = result.Html;
var obj = Newtonsoft.Json.Linq.JObject.Parse(html);
object json = JsonConvert.DeserializeObject<object>(html);
string value = obj["result"][0]["CNTR_NO"].ToString();