UrlRoutingHandler.ProcessRequest Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Processes an HTTP request that matches a route.
Overloads
ProcessRequest(HttpContext) |
Processes an HTTP request that matches a route. |
ProcessRequest(HttpContextBase) |
Processes an HTTP request that matches a route. |
ProcessRequest(HttpContext)
Processes an HTTP request that matches a route.
protected:
virtual void ProcessRequest(System::Web::HttpContext ^ httpContext);
protected virtual void ProcessRequest (System.Web.HttpContext httpContext);
abstract member ProcessRequest : System.Web.HttpContext -> unit
override this.ProcessRequest : System.Web.HttpContext -> unit
Protected Overridable Sub ProcessRequest (httpContext As HttpContext)
Parameters
- httpContext
- HttpContext
An object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server).
Exceptions
The request does not match any route.
No handler is defined for the route.
See also
Applies to
ProcessRequest(HttpContextBase)
Processes an HTTP request that matches a route.
protected:
virtual void ProcessRequest(System::Web::HttpContextBase ^ httpContext);
protected virtual void ProcessRequest (System.Web.HttpContextBase httpContext);
abstract member ProcessRequest : System.Web.HttpContextBase -> unit
override this.ProcessRequest : System.Web.HttpContextBase -> unit
Protected Overridable Sub ProcessRequest (httpContext As HttpContextBase)
Parameters
- httpContext
- HttpContextBase
An object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server).
Exceptions
The request does not match any route.
No handler is defined for the route.