You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aspnetcore/blazor/fundamentals/signalr.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -139,7 +139,7 @@ hubConnection = new HubConnectionBuilder()
139
139
140
140
The preceding example configures the hub connection URL to the absolute URI address at `/chathub`. The URI can also be set via a string, for example `https://signalr.example.com`, or via [configuration](xref:blazor/fundamentals/configuration). `Navigation` is an injected <xref:Microsoft.AspNetCore.Components.NavigationManager>.
141
141
142
-
For more information, see <xref:signalr/configuration#configure-additional-options>.
142
+
For more information, see <xref:signalr/configuration#configure-other-options>.
> ASP.NET Core SignalR server-side assemblies are now installed with the .NET Core SDK. See [SignalR assemblies in shared framework](xref:migration/22-to-30#signalr-assemblies-in-shared-framework) for more information.
2
+
> ASP.NET Core SignalR server-side assemblies are now installed with the .NET Core SDK. For more information, see [SignalR assemblies in shared framework](xref:migration/22-to-30#signalr-assemblies-in-shared-framework).
Copy file name to clipboardExpand all lines: aspnetcore/release-notes/aspnetcore-9/includes/signalr-trimming-aot.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,6 @@ The preceding example produces a native Windows executable of 10 MB and a Linux
24
24
* As shown in the preceding code, apps that use JSON serialization and Native AOT must use the `System.Text.Json` Source Generator.
25
25
* This follows the same approach as Minimal APIs.
26
26
* On the SignalR server, Hub method parameters of type `IAsyncEnumerable<T>` and `ChannelReader<T>` where `T` is a ValueType (`struct`) aren't supported. Using these types results in a runtime exception at startup in development and in the published app. For more information, see [SignalR: Using IAsyncEnumerable<T> and ChannelReader<T> with ValueTypes in native AOT (`dotnet/aspnetcore`#56179)](https://github.com/dotnet/aspnetcore/issues/56179).
27
-
*[Strongly typed hubs](xref:signalr/hubs#strongly-typed-hubs) aren't supported with Native AOT (`PublishAot`). Using strongly typed hubs with Native AOT will result in warnings during build and publish, and a runtime exception. Using strongly typed hubs with trimming (`PublishedTrimmed`) is supported.
27
+
*[Strongly typed hubs](xref:signalr/hubs#use-strongly-typed-hubs) aren't supported with Native AOT (`PublishAot`). Using strongly typed hubs with Native AOT will result in warnings during build and publish, and a runtime exception. Using strongly typed hubs with trimming (`PublishedTrimmed`) is supported.
28
28
* Only `Task`, `Task<T>`, `ValueTask`, or `ValueTask<T>` are supported for async return types.
Copy file name to clipboardExpand all lines: aspnetcore/signalr/background-services.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ Hosting ASP.NET Core SignalR Hubs in the context of a background worker process
30
30
31
31
In the preceding example, the `ClockHub` class implements the `Hub<T>` class to create a strongly typed Hub. The `ClockHub` has been configured in `Program.cs` to respond to requests at the endpoint `/hubs/clock`.
32
32
33
-
For more information on strongly typed Hubs, see [Use hubs in SignalR for ASP.NET Core](xref:signalr/hubs#strongly-typed-hubs).
33
+
For more information on strongly typed Hubs, see [Use hubs in SignalR for ASP.NET Core](xref:signalr/hubs#use-strongly-typed-hubs).
34
34
35
35
> [!NOTE]
36
36
> This functionality isn't limited to the [Hub\<T>](xref:Microsoft.AspNetCore.SignalR.Hub`1) class. Any class that inherits from [Hub](xref:Microsoft.AspNetCore.SignalR.Hub), such as [DynamicHub](xref:Microsoft.AspNetCore.SignalR.DynamicHub), works.
@@ -93,7 +93,7 @@ Hosting ASP.NET Core SignalR Hubs in the context of a background worker process
93
93
94
94
In the preceding example, the `ClockHub` class implements the `Hub<T>` class to create a strongly typed Hub. The `ClockHub` has been configured in the `Startup` class to respond to requests at the endpoint `/hubs/clock`.
95
95
96
-
For more information on strongly typed Hubs, see [Use hubs in SignalR for ASP.NET Core](xref:signalr/hubs#strongly-typed-hubs).
96
+
For more information on strongly typed Hubs, see [Use hubs in SignalR for ASP.NET Core](xref:signalr/hubs#use-strongly-typed-hubs).
97
97
98
98
> [!NOTE]
99
99
> This functionality isn't limited to the [Hub\<T>](xref:Microsoft.AspNetCore.SignalR.Hub`1) class. Any class that inherits from [Hub](xref:Microsoft.AspNetCore.SignalR.Hub), such as [DynamicHub](xref:Microsoft.AspNetCore.SignalR.DynamicHub), works.
@@ -156,7 +156,7 @@ Hosting ASP.NET Core SignalR Hubs in the context of a background worker process
156
156
157
157
In the preceding example, the `ClockHub` class implements the `Hub<T>` class to create a strongly typed Hub. The `ClockHub` has been configured in the `Startup` class to respond to requests at the endpoint `/hubs/clock`.
158
158
159
-
For more information on strongly typed Hubs, see [Use hubs in SignalR for ASP.NET Core](xref:signalr/hubs#strongly-typed-hubs).
159
+
For more information on strongly typed Hubs, see [Use hubs in SignalR for ASP.NET Core](xref:signalr/hubs#use-strongly-typed-hubs).
160
160
161
161
> [!NOTE]
162
162
> This functionality isn't limited to the [Hub\<T>](xref:Microsoft.AspNetCore.SignalR.Hub`1) class. Any class that inherits from [Hub](xref:Microsoft.AspNetCore.SignalR.Hub), such as [DynamicHub](xref:Microsoft.AspNetCore.SignalR.DynamicHub), works.
@@ -212,4 +212,4 @@ During the `IHostedService.StopAsync` method, the `HubConnection` is disposed of
212
212
*[Get started](xref:tutorials/signalr)
213
213
*[Hubs](xref:signalr/hubs)
214
214
*[Publish to Azure](xref:signalr/publish-to-azure-web-app)
0 commit comments