2

我有一个 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; }
}

有任何想法吗?

4

1 回答 1

3

由于错字,应该是:

ParamS // Add one more S

所以,你的班级应该是:

public class Requests
{
    public string jsonrpc { get; set; }
    public string method { get; set; }
    public List<string> @params { get; set; }
    public string id { get; set; }
}
于 2012-10-03T15:10:09.517 回答