The StreamJsonRpc library offers JSON-RPC 2.0 over any .NET Stream, WebSocket, or Pipe. With bonus support for request cancellation, client proxy generation, and more.
Перейти к файлу
Andrew Arnott 5b1bddbe2b
Merge pull request #1076 from AArnott/disconnectDocs
Add docs to help with disconnect investigations
2024-09-12 14:39:49 -06:00
.azuredevops
.config
.devcontainer
.github Merge branch 'main' into microbuild 2024-07-15 15:58:42 -06:00
.vscode
azure-pipelines Build 2.20-beta 2024-07-23 17:14:39 -06:00
doc Add docs to help with disconnect investigations 2024-09-12 09:12:46 -06:00
loc/lcl Juno: check in to juno/hb_152458e8-e8c0-49aa-b375-9938c873e7e8_20240801154552837. (#1068) 2024-08-01 10:27:37 -06:00
src Add docs to help with disconnect investigations 2024-09-12 09:12:46 -06:00
test Allow `JsonElement` as the `params` object in the `SystemTextJsonFormatter` 2024-09-03 13:38:05 -06:00
tools
.editorconfig
.gitattributes
.gitignore
.prettierrc.yaml
BannedSymbols.txt
CONTRIBUTING.md
Directory.Build.props
Directory.Build.rsp
Directory.Build.targets
Directory.Packages.props
LICENSE
README.md
SECURITY.md
StreamJsonRpc.sln
azure-pipelines.yml
global.json
init.cmd
init.ps1
nuget.config
settings.VisualStudio.json
stylecop.json
version.json Removed the preview tag 2024-09-06 09:20:22 -07:00

README.md

vs-StreamJsonRpc

codecov Join the chat at https://gitter.im/vs-streamjsonrpc/Lobby

StreamJsonRpc

NuGet package Build Status

StreamJsonRpc is a cross-platform, .NET portable library that implements the JSON-RPC wire protocol.

It works over Stream, WebSocket, or System.IO.Pipelines pipes, independent of the underlying transport.

Bonus features beyond the JSON-RPC spec include:

  1. Request cancellation
  2. .NET Events as notifications
  3. Dynamic client proxy generation
  4. Support for compact binary serialization via MessagePack
  5. Pluggable architecture for custom message handling and formatting.

Learn about the use cases for JSON-RPC and how to use this library from our documentation.