CompileIntoType() protected method

protected CompileIntoType ( ) : Type
return System.Type
Example #1
0
        public static Type GetCompiledType(string virtualPath, string inputFile, HttpContext context)
        {
#if NET_2_0
            UserControlParser ucp = new UserControlParser(new VirtualPath(virtualPath), inputFile, context);
#else
            UserControlParser ucp = new UserControlParser(virtualPath, inputFile, context);
#endif
            return(ucp.CompileIntoType());
        }
Example #2
0
		public static Type GetCompiledType (string virtualPath, string inputFile, HttpContext context)
		{
			UserControlParser ucp = new UserControlParser (new VirtualPath (virtualPath), inputFile, context);

			return ucp.CompileIntoType ();
		}
Example #3
0
		internal static Type GetCompiledType (string virtualPath, string inputFile, List <string> deps, HttpContext context)
		{
			UserControlParser ucp = new UserControlParser (new VirtualPath (virtualPath), inputFile, deps, context);

			return ucp.CompileIntoType ();
		}
Example #4
0
		internal static Type GetCompiledType (TextReader reader, int? inputHashCode, HttpContext context)
		{
			UserControlParser ucp = new UserControlParser (reader, inputHashCode, context);
			return ucp.CompileIntoType ();
		}
Example #5
0
        internal static Type GetCompiledType(string virtualPath, string inputFile, List <string> deps, HttpContext context)
        {
            UserControlParser ucp = new UserControlParser(new VirtualPath(virtualPath), inputFile, deps, context);

            return(ucp.CompileIntoType());
        }
Example #6
0
        internal static Type GetCompiledType(TextReader reader, int?inputHashCode, HttpContext context)
        {
            UserControlParser ucp = new UserControlParser(reader, inputHashCode, context);

            return(ucp.CompileIntoType());
        }
		internal static Type GetCompiledType (string virtualPath, string inputFile, ArrayList deps, HttpContext context)
		{
#if NET_2_0
			UserControlParser ucp = new UserControlParser (new VirtualPath (virtualPath), inputFile, deps, context);
#else
			UserControlParser ucp = new UserControlParser (virtualPath, inputFile, deps, context);
#endif
			return ucp.CompileIntoType ();
		}