System.Web.UI.PageParser.CompileIntoType C# (CSharp) Method

CompileIntoType() private method

private CompileIntoType ( ) : Type
return Type
		internal override Type CompileIntoType ()
		{
			AspGenerator generator = new AspGenerator (this);
			return generator.GetCompiledType ();
		}

Usage Example

Example #1
0
		public static Type GetCompiledPageType (string virtualPath, string inputFile, HttpContext context)
		{
#if NET_2_0
			return BuildManager.GetCompiledType (virtualPath);
#else
			PageParser pp = new PageParser (virtualPath, inputFile, context);
			return pp.CompileIntoType ();
#endif
		}
All Usage Examples Of System.Web.UI.PageParser::CompileIntoType