1.7 KiB
1.7 KiB
ASP.NET Core
SignalR Attributes
| Attribute | Type | Description | Examples | Stability |
|---|---|---|---|---|
signalr.connection.status |
string | SignalR HTTP connection closure status. | app_shutdown; timeout |
|
signalr.transport |
string | SignalR transport type | web_sockets; long_polling |
signalr.connection.status MUST be one of the following:
signalr.transport has the following list of well-known values. If one of them applies, then the respective value MUST be used; otherwise, a custom value MAY be used.
| Value | Description | Stability |
|---|---|---|
server_sent_events |
ServerSentEvents protocol | |
long_polling |
LongPolling protocol | |
web_sockets |
WebSockets protocol |