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 3c6a27f573
Merge pull request #1042 from AArnott/libtemplateUpdate
Merge latest Library.Template
2024-05-09 11:35:28 -06:00
.azuredevops
.config
.devcontainer
.github
.vscode
azure-pipelines Merge remote-tracking branch 'libtemplate/microbuild' into libtemplateUpdate 2024-05-09 09:09:28 -06:00
doc
loc/lcl
src
test Further shore up timing break in test 2024-05-09 11:03:48 -06:00
tools
.editorconfig
.gitattributes
.gitignore
.prettierrc.yaml
BannedSymbols.txt
CONTRIBUTING.md
Directory.Build.props
Directory.Build.rsp
Directory.Build.targets
Directory.Packages.props Merge remote-tracking branch 'libtemplate/microbuild' into libtemplateUpdate 2024-05-09 09:09:28 -06:00
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

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.