SignalR.Strong icon indicating copy to clipboard operation
SignalR.Strong copied to clipboard

Strongly-typed calls from client to server and handlers for calls from server to client

Results 3 SignalR.Strong issues
Sort by recently updated
recently updated
newest added

For C# nullable types, e.g. `string?`, this change aims to avoid this warning: `warning CS8669: The annotation for nullable reference types should only be used in code within a '#nullable'...

When using SignalR.Strong.Dynamic for our client and calling a hub method: `public Task TakeAString(string myString);` We get a `System.InvalidOperationException` with the message `This operation is only valid on generic types.`...

I've added the ability to define hub interfaces that are derived from other interfaces, so the methods for the whole hierarchy will be generated on the hub proxy.