Castle.MonoRail.Framework.Adapters.ResponseAdapter.Write C# (CSharp) Method

Write() public method

Writes the specified string.
public Write ( String s ) : void
s String The string.
return void
		public void Write(String s)
		{
			response.Write(s);
		}

Same methods

ResponseAdapter::Write ( char ch ) : void
ResponseAdapter::Write ( char buffer, int index, int count ) : void
ResponseAdapter::Write ( object obj ) : void