Sample code for JSON-RPC client in C#

前端 未结 3 1276
慢半拍i
慢半拍i 2021-02-03 16:11

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 JSO

3条回答
  •  执念已碎
    2021-02-03 16:49

    Here is an example of a .net4 client exposed through Observables (Rx). http://jsonrpc2.codeplex.com/SourceControl/changeset/view/13061#63133

    Here is an almost identical wp7 client that is also exposed through Rx. http://jsonrpc2.codeplex.com/SourceControl/changeset/view/13061#282775

    Both of those examples do their work asynchronously so they may be more complicated then you are looking for, unless of course you wanted examples that were asynchronous. :)

    Good Luck!

提交回复
热议问题