Castle.MonoRail.Framework.Internal.ViewEngineInfo.ViewEngineInfo C# (CSharp) Method

ViewEngineInfo() public method

Initializes a new instance of the ViewEngineInfo class.
public ViewEngineInfo ( Type engine, bool xhtmlRendering ) : System
engine System.Type The engine.
xhtmlRendering bool if set to true [XHTML rendering].
return System
		public ViewEngineInfo(Type engine, bool xhtmlRendering)
		{
			this.engine = engine;
			this.xhtmlRendering = xhtmlRendering;
		}
ViewEngineInfo