top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is an asynchronous controller in ASP.NET MVC?

0 votes
276 views
What is an asynchronous controller in ASP.NET MVC?
posted Sep 6, 2016 by Sathyasree

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

-AsyncController is a class which is used to create asynchronous action methods which we use for lengthy processes.

-By using asynchronous controller we can optimize the performance of web server by avoiding the usage of extra resources once a request is processed.

-The AsyncController class is more useful for the calls of web service which takes long time to process.

answer Sep 7, 2016 by Shivaranjini
...