C# Class Castle.MonoRail.Framework.ViewComponents.ChildContentComponent

Renders the contents of the block component into the $childContent context variable, and then renders the components view file.
Inheritance: ViewComponent
Afficher le fichier Open project: nats/castle-1.0.3-mono

Méthodes publiques

Méthode Description
Render ( ) : void

Called by the framework so the component can render its content

Méthodes protégées

Méthode Description
ObtainChildContent ( ) : void

Obtains the content of the child.

PopulateContext ( ) : void

Populates the context.

RenderView ( string name ) : void

Specifies the view to be processed after the component has finished its processing.

RenderView ( string component, string name ) : void

Specifies the view to be processed after the component has finished its processing.

Method Details

ObtainChildContent() protected méthode

Obtains the content of the child.
protected ObtainChildContent ( ) : void
Résultat void

PopulateContext() protected méthode

Populates the context.
protected PopulateContext ( ) : void
Résultat void

Render() public méthode

Called by the framework so the component can render its content
public Render ( ) : void
Résultat void

RenderView() protected méthode

Specifies the view to be processed after the component has finished its processing.
protected RenderView ( string name ) : void
name string
Résultat void

RenderView() protected méthode

Specifies the view to be processed after the component has finished its processing.
protected RenderView ( string component, string name ) : void
component string
name string
Résultat void