What is the difference between app.Use() and app.Run() middleware registration?
-
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