ASP.NET MVC: Is it possible to browse all public functions inside a contoller, like in ASMX

66 Views Asked by At

If you open an ASMX file in a browser, it shows you a nice summary of all of its functions.

Is it possible to do the same for all public functions in ASP.NET MVC controller ?

1

There are 1 best solutions below

0
On

No, not from a browser.

The whole point of having a controller is to control what is displayed in the view. The controller should not present itself to the browser. By it's very nature a controller is designed to present something else to the browser, namely the view:

enter image description here

You could, however use a tool like Glimpse to get a peak at those public functions.