NegotiationResult¶
Negotiation result of the /negotiation request. https://github.com/dotnet/aspnetcore/blob/master/src/SignalR/docs/specs/TransportProtocols.md#post-endpoint-basenegotiate-request
Fields:¶
String ConnectionToken¶
- The connectionToken which is required by the Long Polling and Server-Sent Events transports (in order to correlate sends and receives).
String ConnectionId¶
- The connectionId which is required by the Long Polling and Server-Sent Events transports (in order to correlate sends and receives).
List<SupportedTransport> SupportedTransports¶
- The availableTransports list which describes the transports the server supports. For each transport, the name of the transport (transport) is listed, as is a list of "transfer formats" supported by the transport (transferFormats)
Uri Url¶
- The url which is the URL the client should connect to.
String AccessToken¶
- The accessToken which is an optional bearer token for accessing the specified url.
HTTPResponse NegotiationResponse¶
- The HTTPResponse instance the negotiation-response received with.