Agash.StreamTransport.Signaling 0.1.1-alpha

This is a prerelease version of Agash.StreamTransport.Signaling.
dotnet add package Agash.StreamTransport.Signaling --version 0.1.1-alpha
                    
NuGet\Install-Package Agash.StreamTransport.Signaling -Version 0.1.1-alpha
                    
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="Agash.StreamTransport.Signaling" Version="0.1.1-alpha" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Agash.StreamTransport.Signaling" Version="0.1.1-alpha" />
                    
Directory.Packages.props
<PackageReference Include="Agash.StreamTransport.Signaling" />
                    
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 Agash.StreamTransport.Signaling --version 0.1.1-alpha
                    
#r "nuget: Agash.StreamTransport.Signaling, 0.1.1-alpha"
                    
#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 Agash.StreamTransport.Signaling@0.1.1-alpha
                    
#: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=Agash.StreamTransport.Signaling&version=0.1.1-alpha&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Agash.StreamTransport.Signaling&version=0.1.1-alpha&prerelease
                    
Install as a Cake Tool

Agash.StreamTransport.Signaling

Transport-agnostic WebRTC signaling room router for Agash.StreamTransport.

The router owns the room registry, mints peer ids, routes SDP/ICE between peers in a room, and announces joins and leaves. It carries no media - peers negotiate WebRTC peer-to-peer and the encoded media never touches this process. It depends only on Agash.StreamTransport.Abstractions (no WebRTC, codec, or ASP.NET dependency), so the same router backs both:

  • the standalone relay over a raw WebSocket endpoint, and
  • a host application, bound to its existing SignalR hub.

Binding it to a transport

Implement ISignalingPeerTransport per connection (push a message down to that peer) and drive a session:

var router = new SignalingRouter(iceServerProvider); // singleton

// per connection:
await using ISignalingSession session = router.Connect(myTransport);
// for each inbound message decoded from the socket:
await session.ReceiveAsync(message);
// session disposes on disconnect -> peer-left is announced, empty rooms GC'd

SignalingJson (in the abstractions package) gives the canonical wire format so the WebSocket relay, a SignalR hub, and the room-aware client all agree.

Join rule

A Publisher creates its room if the code is unknown (so it owns the room and survives reconnects); a Subscriber joining an unknown code is rejected with RoomNotFound.

Product Compatible and additional computed target framework versions.
.NET net11.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Agash.StreamTransport.Signaling:

Package Downloads
Agash.StreamTransport

Local-first peer-to-peer WebRTC media transport on a first-party WebRTC stack: hardware H.265 video, Opus audio, SCReAM congestion control, FlexFEC loss recovery, and ICE mobility. Capture-agnostic and NativeAOT-ready, with an abstracted signaling channel.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.1-alpha 46 6/23/2026
0.1.0-alpha 53 6/20/2026
0.0.0-alpha.0 53 6/20/2026