Castle.MonoRail.Framework.ViewComponent.RenderView C# (CSharp) Method

RenderView() protected method

Specifies the view to be processed after the component has finished its processing.
protected RenderView ( String name ) : void
name String
return void
		protected void RenderView(String name)
		{
			context.ViewToRender = Path.Combine(GetBaseViewPath(), name);
		}

Same methods

ViewComponent::RenderView ( String component, String name ) : void