3
Reply

Which handler is Used in MVC architecture to Process the Incoming Request?

Pavan Satpute

Pavan Satpute

10y
2.3k
0
Reply

    IRequestHandler

    When a matching pattern found in the Route Table, the Routing engine forwards the request to the corresponding IRouteHandler for that request. The default one calls the MvcHandler

    In MVC the Base Namespace Contains.

    MVCHandler
    T process the request.