DEV Community

Cover image for Overloading Action Method in ASP.NET MVC
Harshal Suthar
Harshal Suthar

Posted on • Originally published at ifourtechnolab.com

Overloading Action Method in ASP.NET MVC

What is Overloading?

In any Object-Oriented Programming Language, there is a concept called Method Overloading. It simply means to have two or more functions or methods with the same name but different parameters.

Here is a simple example of it.


static int Add(int x, int y)
{
return x + y;
}
static double Add(double x, double y)
{
return x + y;
}
static void Main(string[] args)
{
int num1 = Add(6, 9);
double num2 = Add(4.2, 69.69);
Console.WriteLine("Int: " + num1);
Console.WriteLine("Double: " + num2);
}

Enter fullscreen mode Exit fullscreen mode

What is ASP.NET Filter?

In Asp.Net MVC, the User’s request is routed to the specific controller and action method. Although, there might be situations where one wants to apply logic before and after any action method execution. ASP.NET Filters are applied to use this purpose.

ASP.NET Filter is a custom class that is used to write custom logic for execution prior and/or after an action method is executed. It can be applied to any action or controller.

There are mainly four types of filters:

  1. Authorization Filter
  2. Action Filter
  3. Result Filter
  4. Exception Filter

Each type is executed at a different stage in the pipeline and thus has its own set of intended cases. Choose what kind of filter to create based on the task you need it to perform, and wherein request pipeline it executes.

What is Action Filter?

Action filter’s execution happens before and after an action method executes. Action filter attributes can be applied to a specific action and/or to a controller. When an action filter is applied to a controller, it is applied to all the action methods.

The OutputCache is a system action filter attribute that can be used to an action method for which we want to cache the output.

For example, the output of this action method will be cached for 50 seconds.


[OutputCache(Duration=50)]
public ActionResult Index()
{
return View();
}

Enter fullscreen mode Exit fullscreen mode

Read More: .NET Highcharts With MVC Applications

Steps to create a custom Action Filter

  1. Create a class
  2. Inherit it from ActionFilterAttribute class
  3. Override at least one of these methods:
  • OnActionExecuting
  • OnActionExecuted
  • OnResultExecuting
  • OnResultExecuted

Example:


using System;
using System.Diagnostics;
using System.Web.Mvc;
namespace WebApplication1
{
public class MyFirstCustomFilter : ActionFilterAttribute
{
public override void OnResultExecuting(ResultExecutingContext filterContext)
{
filterContext.Controller.ViewBag.GreetMesssage = "Hello World";
base.OnResultExecuting(filterContext);
}
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
var controllerName = filterContext.RouteData.Values["controller"];
var actionName = filterContext.RouteData.Values["action"];
var message = String.Format("{0} controller:{1} action:{2}", "onexecuting", controllerName, actionName);
Debug.WriteLine(message, "Action Filter Log");
base.OnActionExecuting(filterContext);
}
}

Enter fullscreen mode Exit fullscreen mode

In this program, we are setting ViewBag property for the controllers being executed. The ViewBag property must be set before a controller action result is executed since we are overriding the OnResultExecuting method. Also, it is overriding OnActionExecuting to log the information about the controller’s action method.

If you want to increase the security of a certain section of your website, you can place an [Authorize] attribute on an ActionResult method in your controller. If someone visits your website and they try to hit that page and they aren't authorized, they are sent to the login page (Of course, you need to modify your web.config to point to the login page for this to work properly).


public class RequiresAuthenticationAttribute : ActionFilterAttribute
{
public override void OnActionExecuting(ActionExecutingContext context)
{
var httpContext = context.HttpContext;
if (!httpContext.User.Identity.IsAuthenticated)
{
if (httpContext.Request.Url != null)
{
var redirectOnSuccess = httpContext.Request.Url.AbsolutePath;
var urlHelper = new UrlHelper(context.RequestContext);
var url = urlHelper.LoginUrl(redirectOnSuccess);
httpContext.Response.Redirect(url, true);
}
}
base.OnActionExecuting(context);
}
}

Enter fullscreen mode Exit fullscreen mode

Possible levels of Action Filters

1. As Global Filter

A filter can be added to the global filter in App_Start\FilterConfig. After applying this, one can use this for all the controllers in the Application.

public class FilterConfig
{
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
{
filters.Add(new HandleErrorAttribute());
filters.Add(new MyFirstCustomFilter());
}
}

Enter fullscreen mode Exit fullscreen mode

2. At Controller Level

To apply the filter at the controller level, we should apply it as an attribute to a controller. At the time of applying to the controller level, action will be available to all controllers.


[MyFirstCustomFilter]
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
}

Enter fullscreen mode Exit fullscreen mode

3. At Action Level


To apply the filter at the action level, we should apply it as an attribute of the action.

Enter fullscreen mode Exit fullscreen mode

Method Overloading in MVC

When we try to implement the same concept in MVC, the compilation process will be executed successfully and we won't get any errors, because C# supports the concept of Polymorphism. But, when we try to run the application, we will get the error.

Here is the example:


public ActionResult GetCustomers()  
{  
return Content("This method will return all customers");  
}  
public ActionResult GetCustomers(string customerid)  
{  
return Content("This method will return individual customer");  
}

Enter fullscreen mode Exit fullscreen mode

In this situation, the MVC is confused about methods. It simply does not know which method should be invoked. Polymorphism is the Object-Oriented concept and it is used in C# as well. MVC action methods are strictly invoked via HTTP (Hypertext Transfer Protocol). In the URL, it should not be any duplicate value of address or name. To overcome this, we must use an attribute called action name, and by using this we can implement and run these methods.

Looking for Trusted Dot NET Development Company? Your Search ends here.

Here is the improvised snipped of the same program:


[ActionName("Getall")]  
public ActionResult GetCustomers()  
{  
return Content("This method will return all customers");  
}  
[ActionName("Getbyid")]  
public ActionResult GetCustomers(string customerid)  
{  
return Content("This method will return individual customer");  
}

Enter fullscreen mode Exit fullscreen mode

How to overload the Action Method in MVC?

As we discussed in the prior topics, the method overloading can not be implemented directly in the MVC. We must change the ActionName as shown below:


using System;  
using System.Collections.Generic;  
using System.Linq;  
using System.Web;  
using System.Web.Mvc;  

namespace MvcApplication5.Controllers
{
public class HomeController : Controller  
{
public ActionResult GetEmpName()
{
return Content("This is the test Message");  
}
[ActionName("GetEmpWithCode")]
public ActionResult GetEmpName(string EmpCode)
{
return Content("This is the test Messagewith Overloaded");
}
}
}

Enter fullscreen mode Exit fullscreen mode

Now, when we want to run the controller GetEmpName action method, open this URL in your browser:

Image description

To run the controller GetEmpWithCode action method, open this URL:

Image description

Conclusion

In this blog, we learned what is Method Overloading, MVC Action Methods, How to create Action Methods. We have also discussed how to overload the Action Method using C# practically.

Top comments (0)