Represents the response from a SignalR server during connection negotiation. More...
#include <NegotiationResponse.h>
Public Attributes | |
int32 | NegotiateVersion = 1 |
The negotiation protocol version. | |
FString | ConnectionId |
Unique identifier for the connection. | |
FString | ConnectionToken |
Authentication token for the connection. | |
FString | Url |
The URL to connect to after negotiation. | |
FString | AccessToken |
OAuth or other access token for authentication. | |
FString | Error |
Error message if negotiation failed. | |
TArray< FNegotiationTransport > | AvailableTransports |
List of transports available for this connection. | |
Represents the response from a SignalR server during connection negotiation.
Contains information needed to establish a connection including connection ID, available transports, and authentication details.
FString FNegotiationResponse::AccessToken |
OAuth or other access token for authentication.
TArray<FNegotiationTransport> FNegotiationResponse::AvailableTransports |
List of transports available for this connection.
FString FNegotiationResponse::ConnectionId |
Unique identifier for the connection.
FString FNegotiationResponse::ConnectionToken |
Authentication token for the connection.
FString FNegotiationResponse::Error |
Error message if negotiation failed.
int32 FNegotiationResponse::NegotiateVersion = 1 |
The negotiation protocol version.
FString FNegotiationResponse::Url |
The URL to connect to after negotiation.