1
Reply

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

Umesh  Kumar

Umesh Kumar

3y
13.2k
2
Reply

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