Microsoft.AspNetCore.SignalR.Client 10.0.2

Prefix Reserved
dotnet add package Microsoft.AspNetCore.SignalR.Client --version 10.0.2
                    
NuGet\Install-Package Microsoft.AspNetCore.SignalR.Client -Version 10.0.2
                    
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.2" />
                    
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.2" />
                    
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.2
                    
#r "nuget: Microsoft.AspNetCore.SignalR.Client, 10.0.2"
                    
#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.2
                    
#: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.2
                    
Install as a Cake Addin
#tool nuget:?package=Microsoft.AspNetCore.SignalR.Client&version=10.0.2
                    
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 (628)

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 (158)

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.
Sonarr/Sonarr
Smart PVR for newsgroup and bittorrent users.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
Radarr/Radarr
Movie organizer/manager for usenet and torrent users.
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 10, 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/aspire
Aspire is the tool for code-first, extensible, observable dev and deploy.
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.
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.2 294,878 1/13/2026
10.0.1 361,468 12/9/2025
10.0.0 541,940 11/11/2025
10.0.0-rc.2.25502.107 23,853 10/14/2025
10.0.0-rc.1.25451.107 25,864 9/9/2025
10.0.0-preview.7.25380.108 4,284 8/12/2025
10.0.0-preview.6.25358.103 5,620 7/15/2025
10.0.0-preview.5.25277.114 3,332 6/6/2025
10.0.0-preview.4.25258.110 7,503 5/12/2025
10.0.0-preview.3.25172.1 10,805 4/10/2025
10.0.0-preview.2.25164.1 10,320 3/18/2025
10.0.0-preview.1.25120.3 3,369 2/25/2025
9.0.12 31,810 1/13/2026
9.0.11 245,521 11/11/2025
9.0.10 786,063 10/14/2025
9.0.9 799,505 9/9/2025
9.0.8 718,930 8/5/2025
9.0.7 520,656 7/8/2025
9.0.6 646,842 6/10/2025
9.0.5 618,627 5/13/2025
9.0.4 854,854 4/8/2025
9.0.3 704,767 3/11/2025
9.0.2 825,616 2/11/2025
9.0.1 975,873 1/14/2025
9.0.0 1,323,770 11/12/2024
9.0.0-rc.2.24474.3 45,507 10/8/2024
9.0.0-rc.1.24452.1 3,531 9/10/2024
9.0.0-preview.7.24406.2 7,512 8/13/2024
9.0.0-preview.6.24328.4 9,263 7/9/2024
9.0.0-preview.5.24306.11 5,691 6/11/2024
9.0.0-preview.4.24267.6 15,311 5/21/2024
9.0.0-preview.3.24172.13 7,100 4/11/2024
9.0.0-preview.2.24128.4 7,067 3/12/2024
9.0.0-preview.1.24081.5 6,779 2/13/2024
8.0.23 62,653 1/13/2026
8.0.22 259,746 11/11/2025
8.0.21 239,846 10/14/2025
8.0.20 281,782 9/9/2025
8.0.19 297,885 8/4/2025
8.0.18 277,701 7/8/2025
8.0.17 443,239 6/10/2025
8.0.16 359,814 5/13/2025
8.0.15 528,991 4/8/2025
8.0.14 458,848 3/11/2025
8.0.13 527,242 2/11/2025
8.0.12 743,049 1/14/2025
8.0.11 1,944,204 11/12/2024
8.0.10 2,354,689 10/8/2024
8.0.8 2,564,396 8/13/2024
8.0.7 1,602,507 7/9/2024
8.0.6 1,720,586 5/28/2024
8.0.5 524,398 5/14/2024
8.0.4 1,418,188 4/9/2024
8.0.3 1,290,281 3/12/2024
8.0.2 1,355,015 2/13/2024
8.0.1 1,942,924 1/9/2024
8.0.0 4,191,144 11/14/2023
8.0.0-rc.2.23480.2 18,458 10/10/2023
8.0.0-rc.1.23421.29 26,481 9/12/2023
8.0.0-preview.7.23375.9 13,809 8/8/2023
8.0.0-preview.6.23329.11 8,364 7/11/2023
8.0.0-preview.5.23302.2 5,597 6/13/2023
8.0.0-preview.4.23260.4 10,698 5/16/2023
8.0.0-preview.3.23177.8 21,380 4/11/2023
8.0.0-preview.2.23153.2 3,676 3/14/2023
8.0.0-preview.1.23112.2 7,828 2/21/2023
7.0.20 171,063 5/28/2024
7.0.19 29,969 5/14/2024
7.0.18 66,704 4/9/2024
7.0.17 102,546 3/12/2024
7.0.16 142,639 2/13/2024
7.0.15 252,542 1/9/2024
7.0.14 299,887 11/14/2023
7.0.13 485,200 10/24/2023
7.0.12 364,564 10/10/2023
7.0.11 607,339 9/12/2023
7.0.10 736,194 8/8/2023
7.0.9 867,512 7/11/2023
7.0.8 378,833 6/22/2023
7.0.7 203,228 6/13/2023
7.0.5 1,254,321 4/11/2023
7.0.4 516,195 3/14/2023
7.0.3 731,886 2/14/2023
7.0.2 1,248,029 1/10/2023
7.0.1 542,909 12/13/2022
7.0.0 1,205,233 11/7/2022
7.0.0-rc.2.22476.2 7,384 10/11/2022
7.0.0-rc.1.22427.2 5,322 9/14/2022
7.0.0-preview.7.22376.6 7,596 8/9/2022
7.0.0-preview.6.22330.3 4,698 7/12/2022
7.0.0-preview.5.22303.8 3,682 6/14/2022
7.0.0-preview.4.22251.1 6,806 5/10/2022
7.0.0-preview.3.22178.4 3,696 4/13/2022
7.0.0-preview.2.22153.2 17,774 3/14/2022
7.0.0-preview.1.22109.13 1,392 2/17/2022
6.0.36 507,462 11/12/2024
6.0.35 98,117 10/8/2024
6.0.33 88,031 8/13/2024
6.0.32 74,040 7/9/2024
6.0.31 112,707 5/28/2024
6.0.30 79,356 5/14/2024
6.0.29 103,242 4/9/2024
6.0.28 114,680 3/12/2024
6.0.27 146,346 2/13/2024
6.0.26 121,697 1/9/2024
6.0.25 312,023 11/14/2023
6.0.24 91,279 10/24/2023
6.0.23 79,692 10/10/2023
6.0.22 180,823 9/12/2023
6.0.21 219,540 8/8/2023
6.0.20 134,816 7/11/2023
6.0.19 242,077 6/22/2023
6.0.18 98,528 6/13/2023
6.0.16 472,695 4/11/2023
6.0.15 262,171 3/14/2023
6.0.14 272,696 2/14/2023
6.0.13 449,474 1/10/2023
6.0.12 263,028 12/13/2022
6.0.11 550,686 11/7/2022
6.0.10 1,220,657 10/11/2022
6.0.9 1,104,336 9/13/2022
6.0.8 1,383,349 8/9/2022
6.0.7 1,037,893 7/12/2022
6.0.6 999,476 6/14/2022
6.0.5 1,898,034 5/10/2022
6.0.4 962,449 4/11/2022
6.0.3 1,219,719 3/8/2022
6.0.2 1,087,994 2/8/2022
6.0.1 1,348,156 12/14/2021
6.0.0 3,105,286 11/8/2021
6.0.0-rc.2.21480.10 13,925 10/12/2021
6.0.0-rc.1.21452.15 11,792 9/14/2021
6.0.0-preview.7.21378.6 22,788 8/10/2021
6.0.0-preview.6.21355.2 4,708 7/14/2021
6.0.0-preview.5.21301.17 2,761 6/15/2021
6.0.0-preview.4.21253.5 6,413 5/24/2021
6.0.0-preview.3.21201.13 8,580 4/8/2021
6.0.0-preview.2.21154.6 3,092 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,571 2/12/2021 6.0.0-preview.1.21103.6 is deprecated because it is no longer maintained.
5.0.17 602,506 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 92,040 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 101,080 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 116,639 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 354,383 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 367,831 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 663,105 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 1,533,498 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 640,513 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 499,184 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 718,688 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 423,468 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 722,738 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 412,545 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 306,811 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 428,900 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 602,592 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 402,362 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.17 11,464 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,506 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,382 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,288 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,380 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,240 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,289 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,631 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,260 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,136 3/16/2020 5.0.0-preview.1.20124.5 is deprecated because it is no longer maintained.
3.1.32 247,773 12/13/2022
3.1.31 38,872 11/8/2022
3.1.30 35,208 10/11/2022
3.1.29 37,233 9/13/2022
3.1.28 39,108 8/9/2022
3.1.27 40,251 7/12/2022
3.1.26 59,385 6/14/2022
3.1.25 72,064 5/10/2022
3.1.24 51,695 4/11/2022
3.1.23 78,215 3/8/2022
3.1.22 468,402 12/14/2021
3.1.21 106,395 11/7/2021
3.1.20 56,914 10/11/2021
3.1.19 89,264 9/14/2021
3.1.18 114,296 8/10/2021
3.1.17 82,716 7/13/2021
3.1.16 78,366 6/8/2021
3.1.15 130,201 5/11/2021
3.1.14 157,324 4/6/2021
3.1.13 171,104 3/9/2021
3.1.12 184,568 2/9/2021
3.1.11 196,912 1/12/2021
3.1.10 664,599 11/9/2020
3.1.9 1,114,711 10/13/2020
3.1.8 1,337,965 9/8/2020
3.1.7 614,851 8/11/2020
3.1.6 3,016,424 7/14/2020
3.1.5 851,532 6/9/2020
3.1.4 587,021 5/12/2020
3.1.3 1,209,759 3/24/2020
3.1.2 792,685 2/18/2020
3.1.1 634,456 1/14/2020
3.1.0 643,105 12/3/2019
3.1.0-preview3.19555.2 9,491 11/13/2019 3.1.0-preview3.19555.2 is deprecated because it is no longer maintained.
3.1.0-preview2.19528.8 1,523 11/1/2019 3.1.0-preview2.19528.8 is deprecated because it is no longer maintained.
3.1.0-preview1.19508.20 10,240 10/15/2019 3.1.0-preview1.19508.20 is deprecated because it is no longer maintained.
3.0.3 70,950 2/18/2020 3.0.3 is deprecated because it is no longer maintained.
3.0.2 19,833 1/14/2020 3.0.2 is deprecated because it is no longer maintained.
3.0.0 1,125,020 9/23/2019 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc1.19457.4 2,139 9/16/2019 3.0.0-rc1.19457.4 is deprecated because it is no longer maintained.
3.0.0-preview9.19424.4 2,362 9/4/2019 3.0.0-preview9.19424.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.7 17,050 8/13/2019 3.0.0-preview8.19405.7 is deprecated because it is no longer maintained.
3.0.0-preview7.19365.7 3,731 7/23/2019 3.0.0-preview7.19365.7 is deprecated because it is no longer maintained.
3.0.0-preview6.19307.2 20,294 6/12/2019 3.0.0-preview6.19307.2 is deprecated because it is no longer maintained.
3.0.0-preview5-19227-01 10,836 5/6/2019 3.0.0-preview5-19227-01 is deprecated because it is no longer maintained.
3.0.0-preview4-19216-03 8,526 4/18/2019 3.0.0-preview4-19216-03 is deprecated because it is no longer maintained.
3.0.0-preview3-19153-02 3,285 3/6/2019 3.0.0-preview3-19153-02 is deprecated because it is no longer maintained.
3.0.0-preview-19075-0444 4,592 1/29/2019 3.0.0-preview-19075-0444 is deprecated because it is no longer maintained.
3.0.0-preview-18579-0056 2,151 12/3/2018 3.0.0-preview-18579-0056 is deprecated because it is no longer maintained.
1.2.9 340 1/7/2026
1.2.8 380 1/7/2026
1.2.0 49,146 1/14/2025
1.1.0 3,583,418 12/3/2018 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview3-35497 10,302 10/17/2018 1.1.0-preview3-35497 is deprecated because it is no longer maintained.
1.1.0-preview2-35157 11,535 9/12/2018 1.1.0-preview2-35157 is deprecated because it is no longer maintained.
1.1.0-preview1-35029 3,571 8/22/2018 1.1.0-preview1-35029 is deprecated because it is no longer maintained.
1.0.4 1,871,329 10/1/2018
1.0.3 214,746 8/21/2018
1.0.2 165,986 7/10/2018
1.0.1 141,634 6/18/2018
1.0.0 449,253 5/29/2018
1.0.0-rc1-final 14,884 5/6/2018 1.0.0-rc1-final is deprecated because it is no longer maintained.
1.0.0-preview2-final 11,583 4/10/2018 1.0.0-preview2-final is deprecated because it is no longer maintained.
1.0.0-preview1-final 26,842 2/26/2018 1.0.0-preview1-final is deprecated because it is no longer maintained.
1.0.0-alpha2-final 81,499 10/9/2017 1.0.0-alpha2-final is deprecated because it is no longer maintained.
1.0.0-alpha1-final 20,153 9/14/2017 1.0.0-alpha1-final is deprecated because it is no longer maintained.