Model View Controller (MVC) Question:

What is the significance of NonActionAttribute?

MVC Interview Question
MVC Interview Question

Answer:

In general, all public methods of a controller class are treated as action methods. If you want prevent this default behaviour, just decorate the public method with NonActionAttribute.


Previous QuestionNext Question
Name a few different return types of a controller action method?What is the significance of ASP.NET routing?