Commit Graph

454 Commits (ff2d740f19e54e1b8474a1d95fdbf0e4332d027e)

Author SHA1 Message Date
Rick Anderson a6490be13a
Update hubcontext.md (#30347)
History lessons should be in a history doc, not in the primary doc. You can move this to a topic that compares classic SignalR to Core. I'm sure the list is extensive.
2023-09-14 08:22:31 -10:00
Luke Latham af85a9389e
File downloads article updates 8.0 (#30138) 2023-08-24 08:51:06 -04:00
Luke Latham 815f0223d6
Update link (#29954) 2023-07-30 06:15:47 -04:00
Wade Pickett 23b1355548
SignalR Config: Remove incorrect ping info (#29814) 2023-07-17 10:40:51 -07:00
Wade Pickett 0048964d07
8.0 update SignalR config: withServerTimeout, withKeepAliveInterval (#29761)
* 8.0 update SignalR config: withServerTimeout

* Clarified Keep-Alive interval is withKeepAliveInterval.

* Added details to withKeepAliveIntervalInMilliseconds for JavaScript.

* Improved order of info on withKeepAliveInterval

* Apply suggestions from code review

Commit review changes made by tdykstra

Co-authored-by: Tom Dykstra <tdykstra@microsoft.com>

* Changes per review feedback, BrennanConroy and Tdykstra.

* Replaced hubconnection object with HubConnectionBuilder per feedback BrennanConroy

* Corrected HandshakeTimeout to created on HubConnection object per review feedback

---------

Co-authored-by: Tom Dykstra <tdykstra@microsoft.com>
2023-07-14 12:01:12 -07:00
Brennan 70030ae533
Update Program.cs 2023-07-11 13:45:48 -07:00
Brennan b8e803c44c
Update Startup.cs 2023-07-11 13:45:17 -07:00
Brennan ef7adc1040
Update Program.cs 2023-07-11 13:43:14 -07:00
Wade Pickett f1b1541892
SignalR Config version by include prep (#29720) 2023-07-05 19:16:29 -07:00
Wade Pickett 36beb3e211
SignalR: Reference shared framework (#28398)
* SignalR: Reference shared framework

* Update aspnetcore/signalr/hubs.md

Committing the inline suggestion, and then will update the missing link afterwards.

Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>

* Moved 7.0 version up, moved new note to bottom of topics

* Removed dupe.

* added note in 5 more topics, moved latest versions to top where needed

* New include, reduced number of topics, added resources links

* Moved link in migration doc to internal.

* Added description for xref since subsection title not generated

* Removed note from hubcontext, using additional resources link now

* Reduced new section in migration topic per Rick suggestion

* Apply suggestions from code review

Added additional suggestions to link.

Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>

* Moved note back to near top of hubs.md all 3 versions per Brennan suggestion

---------

Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>
2023-02-24 12:23:37 -08:00
Wade Pickett 68e72e65c4
SignalR clarify connectionID access options (#28343)
* SignalR clarify connectionID access options

* Draft: Corrected instruction and links.

* Added mention of in-memory storage option

* Clarified on storage options such as in-memory or permanent

* Moved storage options under singleton service.
* Update aspnetcore/signalr/hubcontext.md

Adding Rick's suggestion.

Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>

---------

Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>
2023-02-17 17:14:39 -08:00
Rick Anderson 83785ee8e1
ES5 support in SIgnalR /6 (#28325)
* ES5 support in SIgnalR /6

* ES5 support in SIgnalR /6
2023-02-10 09:51:04 -10:00
Ville Kylmämaa 1e173780e9
Improve SignalR Redis Cluster section (#28310) 2023-02-09 16:49:28 -06:00
Neutrino 4c126955c2
Update hubs.md (#28313)
* Update hubs.md

Make it clear that Hubs should not be created directly.

* Updates

* Update hubs.md

Improved wording.

---------

Co-authored-by: Luke Latham <1622880+guardrex@users.noreply.github.com>
2023-02-07 09:23:50 -10:00
Brennan e38284cba9
Java supports client results (#28147) 2023-01-23 16:12:35 -08:00
Brennan acc0176be2
Update Java package version reference (#28083)
Closes https://github.com/dotnet/aspnetcore/issues/45315
2023-01-12 14:09:46 -10:00
Brennan 409a890917
Update redis for clustering (#28061) 2023-01-12 10:03:44 -08:00
Rick Anderson 7cde037036
Link to SIGNALR ON THE WIRE – AN INFORMAL DESCRIPTION OF THE SIGNALR PROTOCOL (#27820)
* Update troubleshoot.md

* Update introduction.md

* Update hubs.md

* Apply suggestions from code review
2023-01-04 15:21:42 -10:00
Stephen Halter 73f965f673
Remove note about increasing MaximumParallelInvocationsPerClient (#28003)
As of 7.0-rc1, this is no longer necessary
2023-01-03 15:23:57 -10:00
Luke Latham 1ec256dd36
Add missing word (#27701) 2022-11-21 05:09:05 -06:00
JialinXin 03417904d0
Update content about Azure SignalR (#27570) 2022-11-10 05:32:23 -06:00
Luke Latham 1eb1c97f4a
Warn on MaximumReceiveMessageSize (#27014) 2022-09-27 18:51:31 -05:00
Alex Buck 167954e87d
[BULK UPDATE] DocuTune - Rebranding links (#27044)
* [BULK UPDATE] DocuTune - Rebranding links

* Update cascading-values-and-parameters.md
2022-09-20 14:37:02 -10:00
Alex Buck 7d539345be
[BULK UPDATE] DocuTune - Fix build validation issues: docs-link-absolute (#26851) 2022-08-30 10:53:06 -10:00
Liangying.Wei 996e8a595a
No need to explicitly call RemoveFromGroupAsync (#26394)
* No need to explicitly call RemoveFromGroupAsync

The sample added this explicit `RemoveFromGroupAsync` call when the connection disconnects, however, it is a redundant call since when the connection disconnects, it is automatically removed from the group. 
We have customers using Azure SignalR followed this sample and invokes `RemoveFromGroupAsync` for every client disconnect, this increases unnecessary burdon to the Azure SignalR service when the client connection closes burst.

* Update hubs.md

Section Handle events for a connection for all versions: Noted no need for RemoveFromGroupAsync in OnConnectedAsync

* Update hubs.md

Added note on RemoveFromGroupsAsync to all versions of topic.  Corrected Typo.

* Update aspnetcore/signalr/hubs.md

Improved statement.

Co-authored-by: Brennan <brecon@microsoft.com>

* Update hubs.md

Updated statement on RemoveFromGroupAsync for all topic versions.

* Update gRPC example for StronglyTypedChatHubs.cs

Removed RemoveFromGroupAsync call from OnDisconnectedAsync.

Co-authored-by: Wade Pickett <wpickett@microsoft.com>
Co-authored-by: Brennan <brecon@microsoft.com>
2022-07-15 11:32:57 -10:00
Brennan 9d2123a231
Update SignalR client results (#26212) 2022-07-12 14:00:23 -07:00
Rick Anderson cc7a860efe
Update hubs.md (#26325)
* Update hubs.md

* Update aspnetcore/signalr/hubs.md

Co-authored-by: Brennan <brecon@microsoft.com>

Co-authored-by: Brennan <brecon@microsoft.com>
2022-07-05 12:40:08 -10:00
Rick Anderson 426375b708
SignalR config to .NET 6 /2 (#26294)
* SignalR config to .NET 6 /2

* SignalR config to .NET 6 /2

* SignalR config to .NET 6 /2

* SignalR config to .NET 6 /2

* SignalR config to .NET 6 /2

* Update aspnetcore/signalr/configuration.md
2022-07-05 09:53:41 -10:00
sammychinedu2ky 8d0cd9f9b1
removed some redundant piece (#26312)
* removed some redundant piece

* Update aspnetcore/signalr/streaming.md

Co-authored-by: Wade Pickett <wpickett@microsoft.com>
2022-07-04 08:42:28 -07:00
sammychinedu2ky ddd02af70b
added the implicit type declarator using var 2022-07-03 03:21:50 +01:00
Rick Anderson 39b7df2ca8
Remove .min ref from all non-Blazor projects /2 (#26216) 2022-06-23 15:27:45 -10:00
Luke Latham e175588086
Institute global no-loc (#26036)
* Institute global no-loc

* Updates

* Updates

* Updates

* Updates

* Updates
2022-06-03 11:35:55 -10:00
Luke Latham a31719333f
Update links (#25886) 2022-05-17 20:44:42 -05:00
Brennan 9a4748e955
[SignalR] Document client results (#25796) 2022-05-12 13:46:22 -07:00
Brennan 46b747fbe7
Add DI to SignalR hub methods (#25746) 2022-04-27 14:07:44 -07:00
Kirk Larkin 9ab7b55134
Update SignalR Hubs to 6.0 (#25449) 2022-04-01 10:55:49 +01:00
Kirk Larkin 294073a200
Prepare SignalR Hubs for 6.0 (#25447) 2022-03-28 12:36:09 +01:00
Luke Latham 546a06a2d5
Blazor no-loc adds (#25429) 2022-03-25 18:19:18 -05:00
Kirk Larkin aae0235204
Replace "Related Resources" with "Additional Resources" (#25419) 2022-03-25 10:52:14 +00:00
Kirk Larkin 2a5520dc53
Code-fence common file extensions (#25383) 2022-03-23 10:48:44 +00:00
Kirk Larkin cc48f32954
Code-fence common filenames (#25369) 2022-03-21 12:24:36 -10:00
Rick Anderson f41e0360c3
Update background-services.md 2022-03-21 08:29:43 -10:00
Dave Pringle 4e2c57e60a
Add SignalR background service 6.0 sample (#25361)
Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>
Co-authored-by: Kirk Larkin <6025110+serpent5@users.noreply.github.com>
2022-03-21 17:59:04 +00:00
Rick Anderson 43b5f09a59
Fix moniker Hell in background services for SignalR /1 (#25327)
* Fix moniker Hell in background services for SignalR /1

* Fix moniker Hell in background services for SignalR /1
2022-03-15 17:11:31 -10:00
Wade Pickett 1658395559
SEO audit: Introduction to ASP.NET Core SignalR (#25227)
* SEO audit: Introduction to ASP.NET Core SignalR

* Corrected title typo.
2022-03-08 10:37:32 -08:00
pitulescubogdan 23cbdec753
Fix signalR reference links (#25214) 2022-03-06 09:00:12 -06:00
Luke Latham 5f1743e629
Add Blazor Hybrid to no-loc metadata (#25064) 2022-02-18 07:17:09 -06:00
Kirk Larkin 6e2e34fe10
Use consistent DOM IDs between inline snippets & sample (#25059) 2022-02-18 10:52:25 +00:00
Kirk Larkin 0fb4660eb1
Replace remaining /dotnet/api references with xrefs (#25039) 2022-02-17 09:35:19 +00:00
Rick Anderson 9134416dbe
.NET 6 update for SignalR auth and authz /1 (#24875)
* .NET 6 update for SignalR auth and authz /1

* .NET 6 update for SignalR auth and authz /1

* .NET 6 update for SignalR auth and authz /1

* .NET 6 update for SignalR auth and authz /1

* .NET 6 update for SignalR auth and authz /1

* .NET 6 update for SignalR auth and authz /1

* react to feedback

* minor updates
2022-02-14 12:34:32 -10:00