C# Class Subtext.Web.UI.Handlers.RedirectHandler

Handles redirects of incoming requests to the appropriate control.
Inheritance: System.Web.IHttpHandler
Show file Open project: ayende/Subtext

Public Methods

Method Description
ProcessRequest ( HttpContext context ) : void

Enables processing of HTTP Web requests by a custom that implements the T:System.Web.IHttpHandler interface.

Parses the incoming request url to determine where the request should be redirected.

Method Details

ProcessRequest() public method

Enables processing of HTTP Web requests by a custom that implements the T:System.Web.IHttpHandler interface.
Parses the incoming request url to determine where the request should be redirected.
public ProcessRequest ( HttpContext context ) : void
context System.Web.HttpContext An object that provides references to the intrinsic server objects (for example, , , , and ) used to service HTTP requests.
return void