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

ResponseAdapter() public method

Initializes a new instance of the ResponseAdapter class.
public ResponseAdapter ( HttpResponse response, IRailsEngineContext context, String appPath ) : System
response System.Web.HttpResponse The response.
context IRailsEngineContext The parent context.
appPath String The app path.
return System
		public ResponseAdapter(HttpResponse response, IRailsEngineContext context, String appPath)
		{
			this.response = response;
			this.appPath = appPath;
			this.context = context;
		}