C# 中的 JSON-RPC 客户端示例代码
我需要一个简单的 C# JSON-RPC 1.0 客户端,最好使用 .NET 2.0 或更高版本。 我查看了 JRock 0.9 他们有几个示例,包括 Yahoo reader,但示例演示的是 JSON,而不是 JSON-RPC。 我知道我可以使用任何可用的 JSON 解析器(例如 Microsoft 的 JRock 或两个)来实现 RPC 部分。 我更喜欢现成的样品。
I need a simple JSON-RPC 1.0 client in C#, preferably using .NET 2.0 or later.
I checked out JRock 0.9
They have several samples including Yahoo reader, but the samples demo JSON, not JSON-RPC.
I understand I could implement RPC part using any of the available JSON parsers, like JRock or two from Microsoft. I would prefer a ready sample.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
2 个示例
有两种不同的实现。 阅读全文+检查附件
2 Samples here
There are two different implementations. Read the whole thread + check the attachments
上面的示例适用于 HTTP 请求。 这是一个与 TCP 一起使用的变体(Nil 类只是一个空类,用于没有返回值的请求):
The samples above work with HTTP requests. Here's a variant that works with TCP (the Nil class is just an empty class used for requests with no return value):