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/signalr/configuration.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,6 +70,7 @@ The following table describes options for configuring SignalR hubs:
70
70
|`EnableDetailedErrors`|`false`| If `true`, detailed exception messages are returned to clients when an exception is thrown in a Hub method. The default is `false`, as these exception messages can contain sensitive information. |
71
71
|`StreamBufferCapacity`|`10`| The maximum number of items that can be buffered for client upload streams. If this limit is reached, the processing of invocations is blocked until the server processes stream items.|
72
72
|`MaximumReceiveMessageSize`| 32 KB | Maximum size of a single incoming hub message. |
73
+
|`MaximumParallelInvocationsPerClient`| 1 | The maximum number of hub methods that each client can call in parallel before queueing. |
73
74
74
75
Options can be configured for all hubs by providing an options delegate to the `AddSignalR` call in `Startup.ConfigureServices`.
0 commit comments