diff --git a/aspnetcore/signalr/hubcontext.md b/aspnetcore/signalr/hubcontext.md index dd8a2cc5cb..54cee61b2e 100644 --- a/aspnetcore/signalr/hubcontext.md +++ b/aspnetcore/signalr/hubcontext.md @@ -38,7 +38,7 @@ Now, with access to an instance of `IHubContext`, you can call hub methods as if Access the `IHubContext` within the middleware pipeline like so: ```csharp -app.Use(next => async (context) => +app.Use(async (context, next) => { var hubContext = context.RequestServices .GetRequiredService>();