Resonance.SignalR 2.0.0

dotnet add package Resonance.SignalR --version 2.0.0
                    
NuGet\Install-Package Resonance.SignalR -Version 2.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Resonance.SignalR" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Resonance.SignalR" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Resonance.SignalR" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Resonance.SignalR --version 2.0.0
                    
#r "nuget: Resonance.SignalR, 2.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Resonance.SignalR@2.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Resonance.SignalR&version=2.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Resonance.SignalR&version=2.0.0
                    
Install as a Cake Tool

Resonance

Resonance is a high-performance real-time C# communication library with built-in support for several different transcoding and delivery methods. This library provides an intuitive API for asynchronous communication between machines and devices by exposing a set of easy to use, pluggable components.

Overview

Resonance is a request-response based communication framework. This means that for each request that is being sent, a matching response is expected. This is done by attaching a unique token to each request and expecting the same token from the response. Although the request-response pattern is the recommended approach, it is not enforced. Sending messages without expecting any response is possible.

The resonance library might be described by these 3 basic layers:

Transporting

A transporter responsibility is to provide the API for sending and receiving messages, managing those messages, and propagating the necessary information to other components.

Transcoding

Encoders and Decoders are components that can be plugged to a transporter, they determine how outgoing/incoming messages should be encoded and whether the data should be encrypted and/or compressed. The Following built-in transcoding methods are currently supported by the library:

  • Json
  • Bson
  • Protobuf
  • Xml

Adapters

Adapters can also be plugged to a transporter to determine how outgoing/incoming encoded data is going to be transmitted and where. The following built-in adapters are currently supported by the library:

  • TCP
  • UDP
  • USB
  • In-Memory
  • SignalR
  • WebRTC
  • Named Pipes
  • Shared Memory
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.0 0 8/8/2026
1.8.0 717 6/25/2021
1.7.2-pre 534 6/25/2021
1.7.1-pre 478 6/24/2021
1.7.0 569 5/27/2021
1.6.1-pre 546 5/22/2021
1.6.0 618 5/20/2021
1.5.3-pre 492 5/19/2021
1.5.2-pre 447 5/19/2021
1.5.1-pre 396 5/18/2021
1.5.0 631 5/6/2021
1.4.0 564 5/4/2021
1.3.2-pre 487 5/2/2021
1.3.0 551 4/30/2021
1.2.14-pre 432 4/30/2021
1.2.13-pre 465 4/30/2021
1.2.12-pre 449 4/30/2021
1.2.9-pre 438 4/30/2021
1.2.8-pre 495 4/27/2021
1.2.7-pre 440 4/27/2021
Loading failed