azure-signalr
azure-signalr copied to clipboard
Support Client Results with ServiceHubContext
Is your feature request related to a problem? Please describe.
I have a .NET 7 project which uses ServiceManager.CreateHubContextAsync<T>
to get a proxy, and then calls a method on the hub context the returns Task<T>
. However, this throws an System.NotImplementedException
with the message WebSocketsHubLifetimeManager
1 does not support client return values.`. Can we please have support for this?
Describe the solution you'd like
I would like to be ablet to get client results from ServiceHubContext
, similar to what we can do in .NET 7 with HubContext
.