ASP.NET Core Practice Test
ASP.NET Core Middleware & Pipeline 3
What is the difference between app.Use() and app.Run() middleware registration?
Select your answer
A
Use() can call next middleware; Run() is terminal and cannot
B
Run() can call next middleware; Use() is terminal
C
Both can call next middleware
D
Neither can call next middleware
Hint