Castle.MonoRail.Framework.Internal.ViewEngineInfo.ViewEngineInfo C# (CSharp) 메소드

ViewEngineInfo() 공개 메소드

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