Microsoft.AspNetCore.SignalR.Client
10.0.0-preview.3.25172.1
Prefix Reserved
dotnet add package Microsoft.AspNetCore.SignalR.Client --version 10.0.0-preview.3.25172.1
NuGet\Install-Package Microsoft.AspNetCore.SignalR.Client -Version 10.0.0-preview.3.25172.1
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="10.0.0-preview.3.25172.1" />
<PackageVersion Include="Microsoft.AspNetCore.SignalR.Client" Version="10.0.0-preview.3.25172.1" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" />
paket add Microsoft.AspNetCore.SignalR.Client --version 10.0.0-preview.3.25172.1
#r "nuget: Microsoft.AspNetCore.SignalR.Client, 10.0.0-preview.3.25172.1"
#addin nuget:?package=Microsoft.AspNetCore.SignalR.Client&version=10.0.0-preview.3.25172.1&prerelease
#tool nuget:?package=Microsoft.AspNetCore.SignalR.Client&version=10.0.0-preview.3.25172.1&prerelease
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 connectionsHubConnection
: 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 aHubConnection
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 | Versions 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. |
.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. |
-
.NETFramework 4.6.2
- Microsoft.AspNetCore.Http.Connections.Client (>= 10.0.0-preview.3.25172.1)
- Microsoft.AspNetCore.SignalR.Client.Core (>= 10.0.0-preview.3.25172.1)
-
.NETStandard 2.0
- Microsoft.AspNetCore.Http.Connections.Client (>= 10.0.0-preview.3.25172.1)
- Microsoft.AspNetCore.SignalR.Client.Core (>= 10.0.0-preview.3.25172.1)
-
net10.0
- Microsoft.AspNetCore.Http.Connections.Client (>= 10.0.0-preview.3.25172.1)
- Microsoft.AspNetCore.SignalR.Client.Core (>= 10.0.0-preview.3.25172.1)
NuGet packages (520)
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. |
|
ppy.osu.Game
Package Description |
GitHub repositories (136)
Showing the top 20 popular GitHub repositories that depend on Microsoft.AspNetCore.SignalR.Client:
Repository | Stars |
---|---|
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 Preview 3, 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.
|
|
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.
|
|
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
Tools, templates, and packages to accelerate building observable, production-ready apps
|
|
cobbr/Covenant
Covenant is a collaborative .NET C2 framework for red teamers.
|
|
Xabaril/AspNetCore.Diagnostics.HealthChecks
Enterprise HealthChecks for ASP.NET Core Diagnostics Package
|
|
Lidarr/Lidarr
Looks and smells like Sonarr but made for music.
|
|
fullstackhero/blazor-starter-kit
Clean Architecture Template for Blazor WebAssembly Built with MudBlazor Components.
|
|
Readarr/Readarr
Book Manager and Automation (Sonarr for Ebooks)
|
|
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!
|
|
thepirat000/Audit.NET
An extensible framework to audit executing operations in .NET and .NET Core.
|
|
phongnguyend/Practical.CleanArchitecture
Full-stack .Net 9 Clean Architecture (Microservices, Modular Monolith, Monolith), Blazor, Angular 19, React 19, Vue 3.5, BFF with YARP, NextJs 15, Domain-Driven Design, CQRS, SOLID, Asp.Net Core Identity Custom Storage, OpenID Connect, EF Core, OpenTelemetry, SignalR, Background Services, Health Checks, Rate Limiting, Clouds (Azure, AWS, GCP), ..
|
Version | Downloads | Last updated | |
---|---|---|---|
10.0.0-preview.3.25172.1 | 596 | 4/10/2025 | |
10.0.0-preview.2.25164.1 | 2,056 | 3/18/2025 | |
10.0.0-preview.1.25120.3 | 1,860 | 2/25/2025 | |
9.0.4 | 23,100 | 4/8/2025 | |
9.0.3 | 255,453 | 3/11/2025 | |
9.0.2 | 344,809 | 2/11/2025 | |
9.0.1 | 381,320 | 1/14/2025 | |
9.0.0 | 622,590 | 11/12/2024 | |
9.0.0-rc.2.24474.3 | 23,980 | 10/8/2024 | |
9.0.0-rc.1.24452.1 | 2,891 | 9/10/2024 | |
9.0.0-preview.7.24406.2 | 4,660 | 8/13/2024 | |
9.0.0-preview.6.24328.4 | 8,168 | 7/9/2024 | |
9.0.0-preview.5.24306.11 | 4,957 | 6/11/2024 | |
9.0.0-preview.4.24267.6 | 9,720 | 5/21/2024 | |
9.0.0-preview.3.24172.13 | 5,186 | 4/11/2024 | |
9.0.0-preview.2.24128.4 | 4,805 | 3/12/2024 | |
9.0.0-preview.1.24081.5 | 4,986 | 2/13/2024 | |
8.0.15 | 8,216 | 4/8/2025 | |
8.0.14 | 91,924 | 3/11/2025 | |
8.0.13 | 152,396 | 2/11/2025 | |
8.0.12 | 253,550 | 1/14/2025 | |
8.0.11 | 900,374 | 11/12/2024 | |
8.0.10 | 1,351,879 | 10/8/2024 | |
8.0.8 | 1,521,507 | 8/13/2024 | |
8.0.7 | 988,417 | 7/9/2024 | |
8.0.6 | 1,187,329 | 5/28/2024 | |
8.0.5 | 390,905 | 5/14/2024 | |
8.0.4 | 940,707 | 4/9/2024 | |
8.0.3 | 783,856 | 3/12/2024 | |
8.0.2 | 995,767 | 2/13/2024 | |
8.0.1 | 1,334,215 | 1/9/2024 | |
8.0.0 | 2,575,172 | 11/14/2023 | |
8.0.0-rc.2.23480.2 | 15,940 | 10/10/2023 | |
8.0.0-rc.1.23421.29 | 26,211 | 9/12/2023 | |
8.0.0-preview.7.23375.9 | 13,538 | 8/8/2023 | |
8.0.0-preview.6.23329.11 | 7,442 | 7/11/2023 | |
8.0.0-preview.5.23302.2 | 5,340 | 6/13/2023 | |
8.0.0-preview.4.23260.4 | 10,449 | 5/16/2023 | |
8.0.0-preview.3.23177.8 | 19,574 | 4/11/2023 | |
8.0.0-preview.2.23153.2 | 3,440 | 3/14/2023 | |
8.0.0-preview.1.23112.2 | 6,370 | 2/21/2023 | |
7.0.20 | 88,041 | 5/28/2024 | |
7.0.19 | 14,198 | 5/14/2024 | |
7.0.18 | 45,331 | 4/9/2024 | |
7.0.17 | 72,452 | 3/12/2024 | |
7.0.16 | 94,439 | 2/13/2024 | |
7.0.15 | 218,609 | 1/9/2024 | |
7.0.14 | 263,202 | 11/14/2023 | |
7.0.13 | 418,420 | 10/24/2023 | |
7.0.12 | 321,059 | 10/10/2023 | |
7.0.11 | 517,599 | 9/12/2023 | |
7.0.10 | 625,248 | 8/8/2023 | |
7.0.9 | 731,423 | 7/11/2023 | |
7.0.8 | 334,983 | 6/22/2023 | |
7.0.7 | 173,005 | 6/13/2023 | |
7.0.5 | 1,132,861 | 4/11/2023 | |
7.0.4 | 465,445 | 3/14/2023 | |
7.0.3 | 618,594 | 2/14/2023 | |
7.0.2 | 1,103,068 | 1/10/2023 | |
7.0.1 | 488,817 | 12/13/2022 | |
7.0.0 | 1,016,939 | 11/7/2022 | |
7.0.0-rc.2.22476.2 | 7,062 | 10/11/2022 | |
7.0.0-rc.1.22427.2 | 5,095 | 9/14/2022 | |
7.0.0-preview.7.22376.6 | 7,370 | 8/9/2022 | |
7.0.0-preview.6.22330.3 | 4,315 | 7/12/2022 | |
7.0.0-preview.5.22303.8 | 2,957 | 6/14/2022 | |
7.0.0-preview.4.22251.1 | 6,566 | 5/10/2022 | |
7.0.0-preview.3.22178.4 | 3,507 | 4/13/2022 | |
7.0.0-preview.2.22153.2 | 17,033 | 3/14/2022 | |
7.0.0-preview.1.22109.13 | 1,212 | 2/17/2022 | |
6.0.36 | 121,718 | 11/12/2024 | |
6.0.35 | 47,834 | 10/8/2024 | |
6.0.33 | 40,937 | 8/13/2024 | |
6.0.32 | 39,275 | 7/9/2024 | |
6.0.31 | 72,957 | 5/28/2024 | |
6.0.30 | 43,633 | 5/14/2024 | |
6.0.29 | 71,900 | 4/9/2024 | |
6.0.28 | 80,053 | 3/12/2024 | |
6.0.27 | 76,663 | 2/13/2024 | |
6.0.26 | 100,496 | 1/9/2024 | |
6.0.25 | 200,618 | 11/14/2023 | |
6.0.24 | 69,479 | 10/24/2023 | |
6.0.23 | 62,292 | 10/10/2023 | |
6.0.22 | 155,402 | 9/12/2023 | |
6.0.21 | 184,714 | 8/8/2023 | |
6.0.20 | 106,030 | 7/11/2023 | |
6.0.19 | 183,434 | 6/22/2023 | |
6.0.18 | 72,876 | 6/13/2023 | |
6.0.16 | 408,609 | 4/11/2023 | |
6.0.15 | 233,841 | 3/14/2023 | |
6.0.14 | 239,646 | 2/14/2023 | |
6.0.13 | 363,747 | 1/10/2023 | |
6.0.12 | 233,752 | 12/13/2022 | |
6.0.11 | 501,284 | 11/7/2022 | |
6.0.10 | 1,133,490 | 10/11/2022 | |
6.0.9 | 964,574 | 9/13/2022 | |
6.0.8 | 1,305,635 | 8/9/2022 | |
6.0.7 | 968,006 | 7/12/2022 | |
6.0.6 | 948,416 | 6/14/2022 | |
6.0.5 | 1,750,174 | 5/10/2022 | |
6.0.4 | 907,906 | 4/11/2022 | |
6.0.3 | 1,162,429 | 3/8/2022 | |
6.0.2 | 866,629 | 2/8/2022 | |
6.0.1 | 1,277,336 | 12/14/2021 | |
6.0.0 | 2,602,226 | 11/8/2021 | |
6.0.0-rc.2.21480.10 | 13,110 | 10/12/2021 | |
6.0.0-rc.1.21452.15 | 11,218 | 9/14/2021 | |
6.0.0-preview.7.21378.6 | 22,568 | 8/10/2021 | |
6.0.0-preview.6.21355.2 | 4,520 | 7/14/2021 | |
6.0.0-preview.5.21301.17 | 2,561 | 6/15/2021 | |
6.0.0-preview.4.21253.5 | 6,108 | 5/24/2021 | |
6.0.0-preview.3.21201.13 | 7,670 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 2,809 | 3/11/2021 | |
6.0.0-preview.1.21103.6 | 7,447 | 2/12/2021 | |
5.0.17 | 506,574 | 5/10/2022 | |
5.0.16 | 72,208 | 4/11/2022 | |
5.0.15 | 79,436 | 3/8/2022 | |
5.0.14 | 95,936 | 2/8/2022 | |
5.0.13 | 319,270 | 12/14/2021 | |
5.0.12 | 339,128 | 11/7/2021 | |
5.0.11 | 610,703 | 10/12/2021 | |
5.0.10 | 1,484,467 | 9/14/2021 | |
5.0.9 | 597,574 | 8/10/2021 | |
5.0.8 | 470,293 | 7/13/2021 | |
5.0.7 | 660,639 | 6/8/2021 | |
5.0.6 | 396,408 | 5/11/2021 | |
5.0.5 | 691,330 | 4/6/2021 | |
5.0.4 | 381,970 | 3/9/2021 | |
5.0.3 | 282,854 | 2/9/2021 | |
5.0.2 | 405,448 | 1/12/2021 | |
5.0.1 | 573,249 | 12/8/2020 | |
5.0.0 | 361,622 | 11/9/2020 | |
5.0.0-rc.2.20475.17 | 10,915 | 10/13/2020 | |
5.0.0-rc.1.20451.17 | 4,224 | 9/14/2020 | |
5.0.0-preview.8.20414.8 | 3,031 | 8/25/2020 | |
5.0.0-preview.7.20365.19 | 7,032 | 7/21/2020 | |
5.0.0-preview.6.20312.15 | 2,113 | 6/25/2020 | |
5.0.0-preview.5.20279.2 | 1,968 | 6/10/2020 | |
5.0.0-preview.4.20257.10 | 3,902 | 5/18/2020 | |
5.0.0-preview.3.20215.14 | 6,354 | 4/23/2020 | |
5.0.0-preview.2.20167.3 | 5,970 | 4/2/2020 | |
5.0.0-preview.1.20124.5 | 5,863 | 3/16/2020 | |
3.1.32 | 186,725 | 12/13/2022 | |
3.1.31 | 17,820 | 11/8/2022 | |
3.1.30 | 20,299 | 10/11/2022 | |
3.1.29 | 22,065 | 9/13/2022 | |
3.1.28 | 21,222 | 8/9/2022 | |
3.1.27 | 23,272 | 7/12/2022 | |
3.1.26 | 38,458 | 6/14/2022 | |
3.1.25 | 48,144 | 5/10/2022 | |
3.1.24 | 36,726 | 4/11/2022 | |
3.1.23 | 57,795 | 3/8/2022 | |
3.1.22 | 378,518 | 12/14/2021 | |
3.1.21 | 90,024 | 11/7/2021 | |
3.1.20 | 41,644 | 10/11/2021 | |
3.1.19 | 73,400 | 9/14/2021 | |
3.1.18 | 98,448 | 8/10/2021 | |
3.1.17 | 67,658 | 7/13/2021 | |
3.1.16 | 61,518 | 6/8/2021 | |
3.1.15 | 108,393 | 5/11/2021 | |
3.1.14 | 137,915 | 4/6/2021 | |
3.1.13 | 150,461 | 3/9/2021 | |
3.1.12 | 157,391 | 2/9/2021 | |
3.1.11 | 174,384 | 1/12/2021 | |
3.1.10 | 613,236 | 11/9/2020 | |
3.1.9 | 996,561 | 10/13/2020 | |
3.1.8 | 1,273,750 | 9/8/2020 | |
3.1.7 | 577,801 | 8/11/2020 | |
3.1.6 | 2,363,328 | 7/14/2020 | |
3.1.5 | 790,884 | 6/9/2020 | |
3.1.4 | 543,101 | 5/12/2020 | |
3.1.3 | 1,105,991 | 3/24/2020 | |
3.1.2 | 745,165 | 2/18/2020 | |
3.1.1 | 600,693 | 1/14/2020 | |
3.1.0 | 601,748 | 12/3/2019 | |
3.1.0-preview3.19555.2 | 9,180 | 11/13/2019 | |
3.1.0-preview2.19528.8 | 1,254 | 11/1/2019 | |
3.1.0-preview1.19508.20 | 9,948 | 10/15/2019 | |
3.0.3 | 54,679 | 2/18/2020 | |
3.0.2 | 4,921 | 1/14/2020 | |
3.0.0 | 1,035,635 | 9/23/2019 | |
3.0.0-rc1.19457.4 | 1,833 | 9/16/2019 | |
3.0.0-preview9.19424.4 | 2,083 | 9/4/2019 | |
3.0.0-preview8.19405.7 | 16,771 | 8/13/2019 | |
3.0.0-preview7.19365.7 | 3,453 | 7/23/2019 | |
3.0.0-preview6.19307.2 | 19,838 | 6/12/2019 | |
3.0.0-preview5-19227-01 | 10,014 | 5/6/2019 | |
3.0.0-preview4-19216-03 | 8,205 | 4/18/2019 | |
3.0.0-preview3-19153-02 | 3,011 | 3/6/2019 | |
3.0.0-preview-19075-0444 | 4,290 | 1/29/2019 | |
3.0.0-preview-18579-0056 | 1,814 | 12/3/2018 | |
1.2.0 | 1,124 | 1/14/2025 | |
1.1.0 | 3,276,372 | 12/3/2018 | |
1.1.0-preview3-35497 | 9,751 | 10/17/2018 | |
1.1.0-preview2-35157 | 11,124 | 9/12/2018 | |
1.1.0-preview1-35029 | 3,158 | 8/22/2018 | |
1.0.4 | 1,830,352 | 10/1/2018 | |
1.0.3 | 196,761 | 8/21/2018 | |
1.0.2 | 147,675 | 7/10/2018 | |
1.0.1 | 117,476 | 6/18/2018 | |
1.0.0 | 400,547 | 5/29/2018 | |
1.0.0-rc1-final | 14,311 | 5/6/2018 | |
1.0.0-preview2-final | 11,032 | 4/10/2018 | |
1.0.0-preview1-final | 26,318 | 2/26/2018 | |
1.0.0-alpha2-final | 79,698 | 10/9/2017 | |
1.0.0-alpha1-final | 19,721 | 9/14/2017 |