如何在C#中从Json字符串中检索值

时间:2016-05-26 04:24:09

标签: c# asp.net json json.net

我得到了像

这样的回复
{ "expires": "Sat, 19 May 2046 04:10:58 +0000", "copy_ref": "SMJNA2wxbGZbnmbnm", "Result": null, "error": null }
    base: { "expires": "Sat, 19 May 2046 04:10:58 +0000", "copy_ref": "SMJNA2wxbGZ0aWRibWw2aA", "Result": null, "error": null }
    ContentDisposition: null
    ContentType: "application/json"
    HttpHeaders: {Connection: keep-alive
expires=Tue, 25 May 2021 04:10:58 GMT; 
}
    IsArray: true
    IsSuccessfully: true
    IsXml: true
    Result: { "expires": "Sat, 19 May 2046 04:10:58 +0000", "copy_ref": "SMJNA2wxbGZbnmbnm", "Result": null, "error": null }
    StatusCode: 200

我需要" copy_ref"的值来自C#中的响应字符串。

1 个答案:

答案 0 :(得分:1)

这是一个小型控制台应用程序,显示了如何使用Json.NET检索它。在你的情况下,字符串," json"将从回复中检索。

window.onload