1
Reply

what is the difference between app.run and app.use middleware in .Net Core.?

Umesh  Kumar

Umesh Kumar

4y
13.5k
2
Reply

    app.Run() will end the request, and app.Use() will pass the request to next middleware.