Castle.MonoRail.Framework.Test.MockViewComponentContext.RenderSection C# (CSharp) Method

RenderSection() public method

Renders the the specified section. No exception will the throw if the section cannot be found.
public RenderSection ( string sectionName ) : void
sectionName string Name of the section.
return void
		public void RenderSection(string sectionName)
		{
			RenderSection(sectionName, writer);
		}

Same methods

MockViewComponentContext::RenderSection ( string sectionName, TextWriter writer ) : void