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 ?
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 ?
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:
You could, however use a tool like Glimpse to get a peak at those public functions.