I can see that there is an option in HubConnection to pass parameters through url request from client. Is there any way to pass specific token through http headers from JS o
using Microsoft.AspNet.SignalR.Client; HubConnection = new HubConnection(_url); HubProxy = HubConnection.CreateHubProxy(_hubname); HubConnection.Headers.Add("Authorization", "Bearer "+authToken); HubConnection .Start().Wait();