My solution contains class library project as business library, and I have written a custom action filter in it.
public class SampleFilterAttribute : ActionFilterAttribute, IExceptionFilter
{
public override void OnActionExecuted(ActionExecutedContext filterContext)
{
var parameters =filterContext.ActionDescriptor.GetParameters();
var currentAction = filterContext.ActionDescriptor;
}
My requirement is now to pass some other parameters to OnActionExecuted function (like Username, description that I will save in database).
My controller action in MVC application project looks like:
[SampleFilterAttribute]
public ActionResult PurchaseRequisition(int? ID)
{
So how can I pass some custom parameters to OnActionExecuted() Action Filter?
You can pass a parameter to your custom Filter Attribute via
TempData
, see below:SampleFilterAttribute
Action