I am creating signalr hub in asp.net web app
My wpf application is client for this signalr hub
I have login facility in my wpf application , I want to store this users on hub created in asp.net , so that I can send information to specific user . I want to store two properties UserName and UserToken , the list of these properties in hub , How I can send
this properties information to hub
I tried using Client.Caller but its not getting any value in connected or disconnected event on hub
any suggestions?
How I can do this?
Ramesh