Castle.MonoRail.Framework.Internal.ViewEngineInfo.ViewEngineInfo C# (CSharp) Méthode

ViewEngineInfo() public méthode

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].
Résultat System
		public ViewEngineInfo(Type engine, bool xhtmlRendering)
		{
			this.engine = engine;
			this.xhtmlRendering = xhtmlRendering;
		}
ViewEngineInfo