System.Web.UI.MasterPageParser.MasterPageParser C# (CSharp) Method

MasterPageParser() private method

private MasterPageParser ( System.Web.VirtualPath virtualPath, string inputFile, HttpContext context ) : System
virtualPath System.Web.VirtualPath
inputFile string
context System.Web.HttpContext
return System
		internal MasterPageParser (VirtualPath virtualPath, string inputFile, HttpContext context)
			: base (virtualPath, inputFile, context, "System.Web.UI.MasterPage")
		{
			this.cacheEntryName = String.Concat ("@@MasterPagePHIDS:", virtualPath, ":", inputFile);
			
			contentPlaceHolderIds = HttpRuntime.InternalCache.Get (this.cacheEntryName) as List <string>;
			LoadConfigDefaults ();
		}

Same methods

MasterPageParser::MasterPageParser ( System.Web.VirtualPath virtualPath, TextReader reader, HttpContext context ) : System
MasterPageParser::MasterPageParser ( System.Web.VirtualPath virtualPath, string inputFile, TextReader reader, HttpContext context ) : System