//within the Startup.cs file //configure services method services.AddSignalR(); //Configure method app.UseEndpoints(endpoints => { endpoints.MapHub<NotifyHub>("/notify"); });