Hello, I have a SignalR client, and a method in another service that get called by the client with an HTTP requests. My client have a stateful object attached to it's
Context.Items
Context.Items
. When the other service receive the request, I can inject it a
IHubContext
IHubContext
, and with
User(string)
User(string)
I can get a
IClientProxy
IClientProxy
that allow to send messages to my client, but there is nothing to retrieve the stored
Items
Items
. And I want to call a method on the object stored here, how should I do that ?