| by Achyut Kendre | No comments

What IHttpActionResult? How to use it?

Example Code: https://drive.google.com/file/d/1X-5eVbonPNDbq6CRLJI-VoTqe_Yau3eO/view?usp=sharing IActionResult is new interface in ASP.NET Core and it can be used as a return type of action in ASP.NET Core. IActionResult can return all things that ActionResult Suppose to do.IActionResult and ActionResult work as a container for other action results, in that IActionResult is an interface and ActionResult is an abstract […]

Read More