我有一个 JSON 编码的字符串。它看起来像这样:
{"jsonrpc":"2.0","method":"test","params":["80851851709e01bc9453cced585a7bca","this"],"id":3}
由于某种原因,我无法使用 C# 访问“参数”。对象返回 null。这是我正在使用的代码:
public class Access : System.Web.Services.WebService
{
[WebMethod]
public string EntryMethod(string json)
{
Requests d = JsonConvert.DeserializeObject<Requests>(json);
return "done";
}
}
public class Requests
{
public string jsonrpc { get; set; }
public string method { get; set; }
public List<string> param { get; set; }
public string id { get; set; }
}
有任何想法吗?