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

RenderText() protected method

Renders the specified content back to the browser
protected RenderText ( String content ) : void
content String The content to render.
return void
		protected void RenderText(String content)
		{
			context.Writer.Write(content);
		}