I\'m trying to add parameter into connection to signalr.
I\'m using Builder to create my Client connection and start it:
var connection = new HubConnecti
I have found how to do this after much research:
On my build i just send the token from url connection. Like this:
var connection = new HubConnectionBuilder()
.WithUrl($"http://10.0.2.162:5002/connection?token={token}")
.WithConsoleLogger()
.WithMessagePackProtocol()
.WithTransport(TransportType.WebSockets)
.Build();