Skip to content

Commit 09c391c

Browse files
Add new SignalR server option (#19964)
1 parent 343e039 commit 09c391c

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

aspnetcore/signalr/configuration.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ The following table describes options for configuring SignalR hubs:
7070
| `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. |
7171
| `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.|
7272
| `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. |
7374

7475
Options can be configured for all hubs by providing an options delegate to the `AddSignalR` call in `Startup.ConfigureServices`.
7576

0 commit comments

Comments
 (0)