Want to retrieve the variable value of action into customized filter
public class TrackError : IExceptionFilter
{
public void OnException(ExceptionContext filterContext)
{
// How to get the value of X ?????????????????
}
}
Controller :
[TrackError]
public class HomeController : Controller
{
public ActionResult Index()
{
int x = 0;
throw new Exception("XYZ");
return View();
}
}
Create custom exception and put whatever additional data you need into its properties. Then you catch that exception type in one of your catch blocks within your exception filter.
and then in filter:
throw your exception like: