UrlRoutingModule.PostMapRequestHandler(HttpContextBase) Method

Definition

Caution

This method is obsolete. Override the Init method to use the PostMapRequestHandler event.

Assigns the HTTP handler for the current request to the context.

public:
 virtual void PostMapRequestHandler(System::Web::HttpContextBase ^ context);
public virtual void PostMapRequestHandler (System.Web.HttpContextBase context);
[System.Obsolete("This method is obsolete. Override the Init method to use the PostMapRequestHandler event.")]
public virtual void PostMapRequestHandler (System.Web.HttpContextBase context);
abstract member PostMapRequestHandler : System.Web.HttpContextBase -> unit
override this.PostMapRequestHandler : System.Web.HttpContextBase -> unit
[<System.Obsolete("This method is obsolete. Override the Init method to use the PostMapRequestHandler event.")>]
abstract member PostMapRequestHandler : System.Web.HttpContextBase -> unit
override this.PostMapRequestHandler : System.Web.HttpContextBase -> unit
Public Overridable Sub PostMapRequestHandler (context As HttpContextBase)

Parameters

context
HttpContextBase

Encapsulates all HTTP-specific information about an individual HTTP request.

Attributes

Exceptions

The RouteHandler property for the route is null.

Remarks

The PostMapRequestHandler method is called when the PostMapRequestHandler event is raised.

Applies to

See also