I'm trying to pass userId to hub on connection to signalR. This is how client sets up the connection:
connection = new HubConnectionBuilder() .WithUrl("http://localhost:56587/hub", options => { options.Headers["UserId"] = loginTextBox.Text; }) .AddMessagePackProtocol() .Build();How can I read this header in OnConnectedAsync() method in my hub?