Call to a specific Client (using Invoke) fails in SignalR - conversion issue -
can explain me why second call (to individual client) invalid?
ihubcontext hubcontext = globalhost.connectionmanager.gethubcontext<symhubgrid>(); ((clientproxy)(hubcontext.clients.all)).invoke(method, msg); // ok ((clientproxy)(hubcontext.clients.client(hubconnid))).invoke(method, msg); // fail it fails following exception:
{microsoft.csharp.runtimebinder.runtimebinderexception: cannot convert type 'microsoft.aspnet.signalr.hubs.connectionidproxy' 'microsoft.aspnet.signalr.hubs.clientproxy
it connected earlier post.
thanks