System.Web.Compilation.AspGenerator.Parse C# (CSharp) Method

Parse() public method

public Parse ( ) : void
return void
		public void Parse ()
		{
			string inputFile = tparser.InputFile;
			TextReader inputReader = tparser.Reader;

			try {			
				if (String.IsNullOrEmpty (inputFile)) {
					StreamReader sr = inputReader as StreamReader;
					if (sr != null) {
						FileStream fr = sr.BaseStream as FileStream;
						if (fr != null)
							inputFile = fr.Name;
					}

					if (String.IsNullOrEmpty (inputFile))
						inputFile = "@@inner_string@@";
				}

				if (inputReader != null) {
					Parse (inputReader, inputFile, true);
				} else {
					if (String.IsNullOrEmpty (inputFile))
						throw new HttpException ("Parser input file is empty, cannot continue.");
					inputFile = Path.GetFullPath (inputFile);
					InitParser (inputFile);
					Parse (inputFile);
				}
			} finally {
				if (inputReader != null)
					inputReader.Close ();
			}
		}

Same methods

AspGenerator::Parse ( Stream stream, string filename, bool doInitParser ) : void
AspGenerator::Parse ( TextReader reader, string filename, bool doInitParser ) : void
AspGenerator::Parse ( string file ) : void
AspGenerator::Parse ( string filename, bool doInitParser ) : void

Usage Example

示例#1
0
		public static Type GetCompiledType (string theme, HttpContext context)
		{
			string virtualPath = "~/App_Themes/" + theme + "/";
			string physicalPath = context.Request.MapPath (virtualPath);
			if (!Directory.Exists (physicalPath))
				throw new HttpException (String.Format ("Theme '{0}' cannot be found in the application or global theme directories.", theme));
			string [] skin_files = Directory.GetFiles (physicalPath, "*.skin");

			PageThemeParser ptp = new PageThemeParser (new VirtualPath (virtualPath), context);
			
			string[] css_files = Directory.GetFiles (physicalPath, "*.css");
			string[] css_urls = new string[css_files.Length];
			for (int i = 0; i < css_files.Length; i++) {
				ptp.AddDependency (css_files [i]);
				css_urls [i] = virtualPath + Path.GetFileName (css_files [i]);
			}

			Array.Sort (css_urls, StringComparer.OrdinalIgnoreCase);
			ptp.LinkedStyleSheets = css_urls;
			
			AspComponentFoundry shared_foundry = new AspComponentFoundry ();
			ptp.RootBuilder = new RootBuilder ();

			string skin_file_url;
			for (int i = 0; i < skin_files.Length; i ++) {
				skin_file_url = VirtualPathUtility.Combine (virtualPath, Path.GetFileName (skin_files [i]));
				PageThemeFileParser ptfp = new PageThemeFileParser (new VirtualPath (skin_file_url),
										    skin_files[i],
										    context);

				ptp.AddDependency (skin_files [i]);
				AspGenerator gen = new AspGenerator (ptfp);
				ptfp.RootBuilder.Foundry = shared_foundry;
				gen.Parse ();

				if (ptfp.RootBuilder.Children != null)
					foreach (object o in ptfp.RootBuilder.Children) {
						if (!(o is ControlBuilder))
							continue;
						ptp.RootBuilder.AppendSubBuilder ((ControlBuilder)o);
					}

				foreach (string ass in ptfp.Assemblies)
					if (!ptp.Assemblies.Contains (ass))
						ptp.AddAssemblyByFileName (ass);
			}

			PageThemeCompiler compiler = new PageThemeCompiler (ptp);
			return compiler.GetCompiledType ();
		}
All Usage Examples Of System.Web.Compilation.AspGenerator::Parse