Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This method calls the OnException method.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Private Sub OnException ( _
filterContext As ExceptionContext _
) Implements IExceptionFilter.OnException
'Usage
Dim instance As Controller
Dim filterContext As ExceptionContext
CType(instance, IExceptionFilter).OnException(filterContext)
void IExceptionFilter.OnException(
ExceptionContext filterContext
)
private:
virtual void OnException(
ExceptionContext^ filterContext
) sealed = IExceptionFilter::OnException
private abstract OnException :
filterContext:ExceptionContext -> unit
private override OnException :
filterContext:ExceptionContext -> unit
JScript supports the use of explicit interface implementations, but not the declarations of new ones.
Parameters
- filterContext
Type: System.Web.Mvc.ExceptionContext
The filter context.
Implements
IExceptionFilter.OnException(ExceptionContext)