文件名称:unirest-win8:适用于 Windows 8 的 Unirest
文件大小:6.79MB
文件格式:ZIP
更新时间:2024-07-20 15:51:29
C#
适用于 Windows 8 的 Unirest Unirest 是一组可用于的轻量级 HTTP 库。 这是 .NET 库到 Windows 8 的端口。 安装 就像馅饼一样容易。 开玩笑。 就像从下载一样简单。 创建请求 所以你可能想知道如何使用 Unirest 使在 .NET 中创建请求更容易,这是一个基本的 POST 请求,它将解释一切: HttpResponse < MyClass> jsonResponse = Unirest . post ( " http://httpbin.org/post " ) . header ( " accept " , " application/json " ) . field ( " parameter " , " value " ) . field ( " foo " , " bar " ) . asJson < My