6 references to TestHub
SignalR.Client.FunctionalTestApp (6)
Startup.cs (3)
234
endpoints.MapHub<
TestHub
>("/testhub");
235
endpoints.MapHub<
TestHub
>("/testhub-nowebsockets", options => options.Transports = HttpTransportType.ServerSentEvents | HttpTransportType.LongPolling);
246
endpoints.MapGet("/clientresult/{id}", async (IHubContext<
TestHub
> hubContext, string id) =>
TestHub.cs (3)
23
private readonly IHubContext<
TestHub
> _context;
25
public TestHub(IHubContext<
TestHub
> context)
77
await ((IHubContext<
TestHub
>)state).Clients.Client(connectionId).SendAsync("StreamCanceled");