25 references to MapHub
JwtSample (1)
Startup.cs (1)
69endpoints.MapHub<Broadcaster>("/broadcast");
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (6)
Startup.cs (5)
97endpoints.MapHub<DynamicTestHub>("/dynamic"); 98endpoints.MapHub<TestHubT>("/hubT"); 99endpoints.MapHub<HubWithAuthorization>("/authorizedhub"); 100endpoints.MapHub<HubWithAuthorization2>("/authorizedhub2") 102endpoints.MapHub<HubWithAuthorization2>("/windowsauthhub")
VersionStartup.cs (1)
45endpoints.MapHub<VersionHub>("/version");
Microsoft.AspNetCore.SignalR.Client.Tests (2)
TestServerTests.cs (2)
32endpoints.MapHub<EchoHub>("/echo"); 84endpoints.MapHub<EchoHub>("/echo");
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (1)
Startup.cs (1)
35endpoints.MapHub<EchoHub>("/echo");
Microsoft.AspNetCore.SignalR.Tests (7)
MapSignalRTests.cs (5)
23using (var host = BuildWebHost(routes => routes.MapHub<InvalidHub>("/overloads"))) 55endpoints.MapHub<AuthHub>("/overloads"); 270endpoints.MapHub<AuthHub>("/path") 310endpoints.MapHub<AuthHub>("/path"); 341routes.MapHub<AuthHub>("/path");
Startup.cs (2)
90endpoints.MapHub<UncreatableHub>("/uncreatable"); 91endpoints.MapHub<AuthHub>("/authHub");
SignalR.Client.FunctionalTestApp (3)
Startup.cs (3)
232endpoints.MapHub<TestHub>("/testhub"); 234endpoints.MapHub<UncreatableHub>("/uncreatable"); 235endpoints.MapHub<HubWithAuthorization>("/authorizedhub");
SignalRSamples (5)
Startup.cs (5)
42endpoints.MapHub<DynamicChat>("/dynamic"); 43endpoints.MapHub<Chat>("/default"); 44endpoints.MapHub<Streaming>("/streaming"); 45endpoints.MapHub<UploadHub>("/uploading"); 46endpoints.MapHub<HubTChat>("/hubT");