Microsoft.AspNetCore.SignalR.Client 10.0.0-rc.2.25502.107

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

About

Microsoft.AspNetCore.SignalR.Client provides the .NET client for ASP.NET Core SignalR, which simplifies adding real-time web functionality to apps.

Key Features

SignalR provides the following capabilities:

  • Automatic connection management
  • Sending messages to all connected clients simultaneously
  • Sending messages to specific clients or groups of clients
  • Scaling to handle increasing traffic

How to Use

To use Microsoft.AspNetCore.SignalR.Client, follow these steps:

Installation

dotnet add package Microsoft.AspNetCore.SignalR.Client

Configuration

See the ASP.NET Core SignalR docs for information about how to configure SignalR hubs on the server.

Then, you can configure the client to connect to the hub. For example:

var connection = new HubConnectionBuilder()
    .WithUrl("http://localhost:53353/Chat")
    .Build();

connection.On("ReceiveMessage", (string user, string message) =>
{
    Console.WriteLine($"{user}: {message}");
});

await connection.StartAsync();

Main Types

The main types provided by Microsoft.AspNetCore.SignalR.Client include:

  • HubConnectionBuilder: Provides an abstraction to construct new SignalR hub connections
  • HubConnection: Defines methods for managing a hub connection, including:
    • Starting and stopping the connection
    • Sending and receiving messages
    • Handling disconnects and attempting reconnects
  • HubConnectionOptions: Provides options for configuring a HubConnection

Additional Documentation

For additional documentation and examples, refer to the official documentation on the .NET client for ASP.NET Core SignalR.

Feedback & Contributing

Microsoft.AspNetCore.SignalR.Client is released as open-source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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 is compatible.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (592)

Showing the top 5 NuGet packages that depend on Microsoft.AspNetCore.SignalR.Client:

Package Downloads
AspNetCore.HealthChecks.SignalR

HealthChecks.SignalR is the health check package for SignalR.

uSync.Expansions.Core

Core libraries for uSync Expansions

Blauhaus.SignalR.Client

Package Description

FenixAlliance.ACL.Dependencies

Application Component for the Alliance Business Suite.

AIForged.SDK

Package Description

GitHub repositories (154)

Showing the top 20 popular GitHub repositories that depend on Microsoft.AspNetCore.SignalR.Client:

Repository Stars
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
ppy/osu
rhythm is just a *click* away!
dotnet/runtime
.NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
Sonarr/Sonarr
Smart PVR for newsgroup and bittorrent users.
Radarr/Radarr
Movie organizer/manager for usenet and torrent users.
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 10 RC 2, 9, 8.0, 7.0, 6.0, 5.0, 3.1, 2.2, and 2.1,projects you can use. Readme contains explanations on all projects.
Prowlarr/Prowlarr
Prowlarr is an indexer manager/proxy built on the popular *arr .net/reactjs base stack to integrate with your various PVR apps, supporting management of both Torrent Trackers and Usenet Indexers.
dotnet/tye
Tye is a tool that makes developing, testing, and deploying microservices and distributed applications easier. Project Tye includes a local orchestrator to make developing microservices easier and the ability to deploy microservices to Kubernetes with minimal configuration.
dotnet/aspire
Aspire is the tool for code-first, extensible, observable dev and deploy.
immense/Remotely
A remote control and remote scripting solution, built with .NET 8, Blazor, and SignalR.
Lidarr/Lidarr
Looks and smells like Sonarr but made for music.
cobbr/Covenant
Covenant is a collaborative .NET C2 framework for red teamers.
Xabaril/AspNetCore.Diagnostics.HealthChecks
Enterprise HealthChecks for ASP.NET Core Diagnostics Package
fullstackhero/blazor-starter-kit
Clean Architecture Template for Blazor WebAssembly Built with MudBlazor Components.
Readarr/Readarr
Book Manager and Automation (Sonarr for Ebooks)
linq2db/linq2db
Linq to database provider.
dotnet/interactive
.NET Interactive combines the power of .NET with many other languages to create notebooks, REPLs, and embedded coding experiences. Share code, explore data, write, and learn across your apps in ways you couldn't before.
dotnetcore/osharp
OSharp是一个基于.Net6.0的快速开发框架,框架对 AspNetCore 的配置、依赖注入、日志、缓存、实体框架、Mvc(WebApi)、身份认证、功能权限、数据权限等模块进行更高一级的自动化封装,并规范了一套业务实现的代码结构与操作流程,使 .Net 框架更易于应用到实际项目开发中。
microsoft/dotnet-podcasts
.NET reference application shown at .NET Conf featuring ASP.NET Core, Blazor, .NET MAUI, Microservices, Orleans, Playwright, and more!
Version Downloads Last Updated
10.0.0-rc.2.25502.107 12,794 10/14/2025
10.0.0-rc.1.25451.107 22,402 9/9/2025
10.0.0-preview.7.25380.108 3,799 8/12/2025
10.0.0-preview.6.25358.103 3,622 7/15/2025
10.0.0-preview.5.25277.114 2,721 6/6/2025
10.0.0-preview.4.25258.110 4,741 5/12/2025
10.0.0-preview.3.25172.1 9,257 4/10/2025
10.0.0-preview.2.25164.1 7,817 3/18/2025
10.0.0-preview.1.25120.3 2,497 2/25/2025
9.0.10 143,625 10/14/2025
9.0.9 494,021 9/9/2025
9.0.8 536,219 8/5/2025
9.0.7 388,565 7/8/2025
9.0.6 504,910 6/10/2025
9.0.5 501,303 5/13/2025
9.0.4 717,718 4/8/2025
9.0.3 591,572 3/11/2025
9.0.2 692,589 2/11/2025
9.0.1 844,744 1/14/2025
9.0.0 1,084,324 11/12/2024
9.0.0-rc.2.24474.3 43,604 10/8/2024
9.0.0-rc.1.24452.1 3,394 9/10/2024
9.0.0-preview.7.24406.2 6,883 8/13/2024
9.0.0-preview.6.24328.4 8,954 7/9/2024
9.0.0-preview.5.24306.11 5,508 6/11/2024
9.0.0-preview.4.24267.6 13,201 5/21/2024
9.0.0-preview.3.24172.13 6,434 4/11/2024
9.0.0-preview.2.24128.4 6,586 3/12/2024
9.0.0-preview.1.24081.5 6,314 2/13/2024
8.0.21 63,495 10/14/2025
8.0.20 152,398 9/9/2025
8.0.19 176,622 8/4/2025
8.0.18 158,568 7/8/2025
8.0.17 322,777 6/10/2025
8.0.16 256,568 5/13/2025
8.0.15 412,779 4/8/2025
8.0.14 374,227 3/11/2025
8.0.13 422,998 2/11/2025
8.0.12 619,763 1/14/2025
8.0.11 1,601,678 11/12/2024
8.0.10 2,073,951 10/8/2024
8.0.8 2,223,900 8/13/2024
8.0.7 1,408,849 7/9/2024
8.0.6 1,546,936 5/28/2024
8.0.5 480,427 5/14/2024
8.0.4 1,292,540 4/9/2024
8.0.3 1,151,257 3/12/2024
8.0.2 1,236,631 2/13/2024
8.0.1 1,744,049 1/9/2024
8.0.0 3,620,479 11/14/2023
8.0.0-rc.2.23480.2 18,217 10/10/2023
8.0.0-rc.1.23421.29 26,399 9/12/2023
8.0.0-preview.7.23375.9 13,755 8/8/2023
8.0.0-preview.6.23329.11 8,031 7/11/2023
8.0.0-preview.5.23302.2 5,542 6/13/2023
8.0.0-preview.4.23260.4 10,605 5/16/2023
8.0.0-preview.3.23177.8 20,912 4/11/2023
8.0.0-preview.2.23153.2 3,615 3/14/2023
8.0.0-preview.1.23112.2 7,736 2/21/2023
7.0.20 136,552 5/28/2024
7.0.19 17,387 5/14/2024
7.0.18 52,580 4/9/2024
7.0.17 89,050 3/12/2024
7.0.16 126,155 2/13/2024
7.0.15 234,231 1/9/2024
7.0.14 280,805 11/14/2023
7.0.13 459,474 10/24/2023
7.0.12 343,459 10/10/2023
7.0.11 571,483 9/12/2023
7.0.10 695,527 8/8/2023
7.0.9 819,155 7/11/2023
7.0.8 359,191 6/22/2023
7.0.7 186,933 6/13/2023
7.0.5 1,210,725 4/11/2023
7.0.4 493,350 3/14/2023
7.0.3 690,074 2/14/2023
7.0.2 1,197,075 1/10/2023
7.0.1 520,388 12/13/2022
7.0.0 1,163,246 11/7/2022
7.0.0-rc.2.22476.2 7,319 10/11/2022
7.0.0-rc.1.22427.2 5,251 9/14/2022
7.0.0-preview.7.22376.6 7,540 8/9/2022
7.0.0-preview.6.22330.3 4,645 7/12/2022
7.0.0-preview.5.22303.8 3,472 6/14/2022
7.0.0-preview.4.22251.1 6,741 5/10/2022
7.0.0-preview.3.22178.4 3,643 4/13/2022
7.0.0-preview.2.22153.2 17,717 3/14/2022
7.0.0-preview.1.22109.13 1,342 2/17/2022
6.0.36 370,377 11/12/2024
6.0.35 75,474 10/8/2024
6.0.33 70,262 8/13/2024
6.0.32 55,461 7/9/2024
6.0.31 91,185 5/28/2024
6.0.30 61,749 5/14/2024
6.0.29 86,100 4/9/2024
6.0.28 98,238 3/12/2024
6.0.27 114,643 2/13/2024
6.0.26 107,372 1/9/2024
6.0.25 283,502 11/14/2023
6.0.24 77,312 10/24/2023
6.0.23 66,554 10/10/2023
6.0.22 165,463 9/12/2023
6.0.21 201,474 8/8/2023
6.0.20 117,760 7/11/2023
6.0.19 218,791 6/22/2023
6.0.18 82,336 6/13/2023
6.0.16 445,594 4/11/2023
6.0.15 246,145 3/14/2023
6.0.14 255,646 2/14/2023
6.0.13 415,068 1/10/2023
6.0.12 247,376 12/13/2022
6.0.11 523,741 11/7/2022
6.0.10 1,189,442 10/11/2022
6.0.9 1,046,601 9/13/2022
6.0.8 1,359,423 8/9/2022
6.0.7 1,011,898 7/12/2022
6.0.6 978,840 6/14/2022
6.0.5 1,850,383 5/10/2022
6.0.4 942,523 4/11/2022
6.0.3 1,196,489 3/8/2022
6.0.2 999,581 2/8/2022
6.0.1 1,322,935 12/14/2021
6.0.0 2,941,323 11/8/2021
6.0.0-rc.2.21480.10 13,745 10/12/2021
6.0.0-rc.1.21452.15 11,649 9/14/2021
6.0.0-preview.7.21378.6 22,725 8/10/2021
6.0.0-preview.6.21355.2 4,653 7/14/2021
6.0.0-preview.5.21301.17 2,707 6/15/2021
6.0.0-preview.4.21253.5 6,364 5/24/2021
6.0.0-preview.3.21201.13 8,386 4/8/2021
6.0.0-preview.2.21154.6 3,016 3/11/2021 6.0.0-preview.2.21154.6 is deprecated because it is no longer maintained.
6.0.0-preview.1.21103.6 8,499 2/12/2021 6.0.0-preview.1.21103.6 is deprecated because it is no longer maintained.
5.0.17 572,470 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 77,669 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 87,014 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 103,708 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 336,744 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 351,460 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 639,518 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 1,514,219 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 621,142 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 485,049 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 697,789 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 407,823 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 706,230 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 397,328 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 292,516 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 415,492 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 586,145 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 381,818 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.17 11,309 10/13/2020 5.0.0-rc.2.20475.17 is deprecated because it is no longer maintained.
5.0.0-rc.1.20451.17 4,432 9/14/2020 5.0.0-rc.1.20451.17 is deprecated because it is no longer maintained.
5.0.0-preview.8.20414.8 3,287 8/25/2020 5.0.0-preview.8.20414.8 is deprecated because it is no longer maintained.
5.0.0-preview.7.20365.19 7,210 7/21/2020 5.0.0-preview.7.20365.19 is deprecated because it is no longer maintained.
5.0.0-preview.6.20312.15 2,307 6/25/2020 5.0.0-preview.6.20312.15 is deprecated because it is no longer maintained.
5.0.0-preview.5.20279.2 2,165 6/10/2020 5.0.0-preview.5.20279.2 is deprecated because it is no longer maintained.
5.0.0-preview.4.20257.10 4,197 5/18/2020 5.0.0-preview.4.20257.10 is deprecated because it is no longer maintained.
5.0.0-preview.3.20215.14 6,560 4/23/2020 5.0.0-preview.3.20215.14 is deprecated because it is no longer maintained.
5.0.0-preview.2.20167.3 6,188 4/2/2020 5.0.0-preview.2.20167.3 is deprecated because it is no longer maintained.
5.0.0-preview.1.20124.5 6,072 3/16/2020 5.0.0-preview.1.20124.5 is deprecated because it is no longer maintained.
3.1.32 221,323 12/13/2022
3.1.31 23,424 11/8/2022
3.1.30 22,736 10/11/2022
3.1.29 24,657 9/13/2022
3.1.28 25,424 8/9/2022
3.1.27 27,208 7/12/2022
3.1.26 45,039 6/14/2022
3.1.25 56,423 5/10/2022
3.1.24 39,210 4/11/2022
3.1.23 63,976 3/8/2022
3.1.22 435,227 12/14/2021
3.1.21 93,374 11/7/2021
3.1.20 44,241 10/11/2021
3.1.19 76,514 9/14/2021
3.1.18 101,552 8/10/2021
3.1.17 70,220 7/13/2021
3.1.16 65,178 6/8/2021
3.1.15 115,956 5/11/2021
3.1.14 144,081 4/6/2021
3.1.13 156,853 3/9/2021
3.1.12 169,094 2/9/2021
3.1.11 182,501 1/12/2021
3.1.10 646,673 11/9/2020
3.1.9 1,071,381 10/13/2020
3.1.8 1,319,231 9/8/2020
3.1.7 597,063 8/11/2020
3.1.6 2,806,105 7/14/2020
3.1.5 825,414 6/9/2020
3.1.4 566,390 5/12/2020
3.1.3 1,170,077 3/24/2020
3.1.2 769,339 2/18/2020
3.1.1 617,455 1/14/2020
3.1.0 624,405 12/3/2019
3.1.0-preview3.19555.2 9,415 11/13/2019 3.1.0-preview3.19555.2 is deprecated because it is no longer maintained.
3.1.0-preview2.19528.8 1,453 11/1/2019 3.1.0-preview2.19528.8 is deprecated because it is no longer maintained.
3.1.0-preview1.19508.20 10,172 10/15/2019 3.1.0-preview1.19508.20 is deprecated because it is no longer maintained.
3.0.3 58,047 2/18/2020 3.0.3 is deprecated because it is no longer maintained.
3.0.2 7,343 1/14/2020 3.0.2 is deprecated because it is no longer maintained.
3.0.0 1,091,241 9/23/2019 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc1.19457.4 2,071 9/16/2019 3.0.0-rc1.19457.4 is deprecated because it is no longer maintained.
3.0.0-preview9.19424.4 2,283 9/4/2019 3.0.0-preview9.19424.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.7 16,980 8/13/2019 3.0.0-preview8.19405.7 is deprecated because it is no longer maintained.
3.0.0-preview7.19365.7 3,659 7/23/2019 3.0.0-preview7.19365.7 is deprecated because it is no longer maintained.
3.0.0-preview6.19307.2 20,207 6/12/2019 3.0.0-preview6.19307.2 is deprecated because it is no longer maintained.
3.0.0-preview5-19227-01 10,762 5/6/2019 3.0.0-preview5-19227-01 is deprecated because it is no longer maintained.
3.0.0-preview4-19216-03 8,447 4/18/2019 3.0.0-preview4-19216-03 is deprecated because it is no longer maintained.
3.0.0-preview3-19153-02 3,214 3/6/2019 3.0.0-preview3-19153-02 is deprecated because it is no longer maintained.
3.0.0-preview-19075-0444 4,522 1/29/2019 3.0.0-preview-19075-0444 is deprecated because it is no longer maintained.
3.0.0-preview-18579-0056 2,073 12/3/2018 3.0.0-preview-18579-0056 is deprecated because it is no longer maintained.
1.2.0 11,705 1/14/2025
1.1.0 3,482,444 12/3/2018 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview3-35497 10,222 10/17/2018 1.1.0-preview3-35497 is deprecated because it is no longer maintained.
1.1.0-preview2-35157 11,441 9/12/2018 1.1.0-preview2-35157 is deprecated because it is no longer maintained.
1.1.0-preview1-35029 3,476 8/22/2018 1.1.0-preview1-35029 is deprecated because it is no longer maintained.
1.0.4 1,855,117 10/1/2018
1.0.3 201,659 8/21/2018
1.0.2 152,439 7/10/2018
1.0.1 126,477 6/18/2018
1.0.0 426,342 5/29/2018
1.0.0-rc1-final 14,754 5/6/2018 1.0.0-rc1-final is deprecated because it is no longer maintained.
1.0.0-preview2-final 11,450 4/10/2018 1.0.0-preview2-final is deprecated because it is no longer maintained.
1.0.0-preview1-final 26,718 2/26/2018 1.0.0-preview1-final is deprecated because it is no longer maintained.
1.0.0-alpha2-final 80,933 10/9/2017 1.0.0-alpha2-final is deprecated because it is no longer maintained.
1.0.0-alpha1-final 20,054 9/14/2017 1.0.0-alpha1-final is deprecated because it is no longer maintained.