| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- // System.Web.UI.UserControlParser
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002,2003 Ximian, Inc (http://www.ximian.com)
- //
- using System;
- using System.IO;
- using System.Web;
- using System.Web.Compilation;
- using System.Web.Util;
- namespace System.Web.UI
- {
- internal sealed class UserControlParser : TemplateControlParser
- {
- internal UserControlParser (string virtualPath, string inputFile, HttpContext context)
- {
- Context = context;
- InputFile = context.Request.MapPath (inputFile);
- }
-
- public static Type GetCompiledType (string virtualPath, string inputFile, HttpContext context)
- {
- UserControlParser ucp = new UserControlParser (virtualPath, inputFile, context);
- return ucp.CompileIntoType ();
- }
- protected override Type CompileIntoType ()
- {
- AspGenerator generator = new AspGenerator (this);
- return generator.GetCompiledType ();
- }
- internal override Type DefaultBaseType
- {
- get {
- return typeof (UserControl);
- }
- }
- internal override string DefaultDirectiveName
- {
- get {
- return "control";
- }
- }
- }
- }
|