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