JSON-RPC.NET
JSON-RPC.NET copied to clipboard
.Net JSON RPC framework
### Why? - Performance - System.Net.Json is a built in See docs https://docs.microsoft.com/en-us/dotnet/standard/serialization/system-text-json-migrate-from-newtonsoft-how-to
Austin, I think JSON-RPC.NET is very inspiring, to say the least. Still, I think it can be improved in the following way: you can keep your/users' service classes more agnostic...
I have method with 4 optional parameters `public UpdateDomainView UpdateDomain(string domain, ApiRegistrantEntity s_registrant = null, ApiRegistrantContractEntity contract_info = null, IEnumerable dsRecords = null, Dictionary s_ns = null) {}` When i...
In our mind, params-related error should raise -32700 or -32602 error. ``` { "jsonrpc": "2.0", "error": { "code": -32603, "message": "Internal Error", "data": { "ClassName": "System.ArgumentException", "Message": "Невозможно преобразовать объект...
This is for issue #89 ## Todo Feel free to provide a pull request into this branch for any of the below. - [x] Create AustinHarris.JsonRpc.Standard - Targets .Net Standard...
Is it possible to carry out JsonRpcProcessor.Process in parent thread? Like with Task.RunSynchronously.
Hi Austin, Thanks for sharing your work! I made a couple of changes to the solution. One to avoid an error "An item with the same key has already been...
I would like to ask to add the ability to configure serialization if you have time for this.
I found this request over on the old codeplex site. > TakashiImoto > Jul 11, 2015 at 8:53 AM > I want to get JsonRequest's Id in invoked method when...