We’re using the OnException virtual method in BaseController to log our exception.
But how can we get the controller action and parameters that the exception originated from?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can get all these data from
ExceptionContextobject.For example using this code you can get controller, action and all other routing parameters:
Using this code you can get query string parameters:
And finnaly form parameters: