System.Web.UI.ApplicationFileParser.GetCompiledApplicationType C# (CSharp) Method

GetCompiledApplicationType() static private method

static private GetCompiledApplicationType ( string inputFile, HttpContext context ) : Type
inputFile string
context System.Web.HttpContext
return System.Type
		internal static Type GetCompiledApplicationType (string inputFile, HttpContext context)
		{
			ApplicationFileParser parser = new ApplicationFileParser (inputFile, context);
			AspGenerator generator = new AspGenerator (parser);
			Type type = generator.GetCompiledType ();
			dependencies = parser.Dependencies;
			return type;
		}