7 references to Constants
WebPubSubWeb (7)
Program.cs (7)
5
builder.AddKeyedAzureWebPubSubServiceClient("wps1",
Constants
.ChatHubName);
6
builder.AddKeyedAzureWebPubSubServiceClient("wps1",
Constants
.NotificationHubName);
34
app.MapGet("/negotiate/chat", ([FromKeyedServices(
Constants
.ChatHubName)] WebPubSubServiceClient service) =>
43
app.MapGet("/negotiate/notification", ([FromKeyedServices(
Constants
.NotificationHubName)] WebPubSubServiceClient service) =>
53
app.Map($"/eventhandler/{
Constants
.ChatHubName}", async ([FromKeyedServices(
Constants
.ChatHubName)] WebPubSubServiceClient service, HttpContext context, ILogger logger) => {
77
sealed class NotificationService([FromKeyedServices(
Constants
.NotificationHubName)] WebPubSubServiceClient service) : BackgroundService