C# Class Castle.MonoRail.Framework.Views.Aspx.WebFormsViewEngine.ExecutePageProvider

Inheritance: IMonoRailHttpHandlerProvider
Show file Open project: nats/castle-1.0.3-mono

Public Methods

Method Description
ExecutePage ( IRailsEngineContext context ) : Page

Executes the page.

ExecutePageProvider ( WebFormsViewEngine engine, string viewName ) : System

Initializes a new instance of the ExecutePageProvider class.

ObtainMonoRailHttpHandler ( IRailsEngineContext context ) : IHttpHandler

Implementors should perform their logic to return a instance of IHttpHandler. If the IHttpHandler can not be created, it should return null.

ReleaseHandler ( IHttpHandler handler ) : void

Implementors should perform their logic to release the IHttpHandler instance and its resources.

Method Details

ExecutePage() public method

Executes the page.
public ExecutePage ( IRailsEngineContext context ) : Page
context IRailsEngineContext The context.
return System.Web.UI.Page

ExecutePageProvider() public method

Initializes a new instance of the ExecutePageProvider class.
public ExecutePageProvider ( WebFormsViewEngine engine, string viewName ) : System
engine WebFormsViewEngine The engine.
viewName string Name of the view.
return System

ObtainMonoRailHttpHandler() public method

Implementors should perform their logic to return a instance of IHttpHandler. If the IHttpHandler can not be created, it should return null.
public ObtainMonoRailHttpHandler ( IRailsEngineContext context ) : IHttpHandler
context IRailsEngineContext
return IHttpHandler

ReleaseHandler() public method

Implementors should perform their logic to release the IHttpHandler instance and its resources.
public ReleaseHandler ( IHttpHandler handler ) : void
handler IHttpHandler
return void