| 12345678910111213141516171819202122232425262728293031 |
- //
- // System.Web.Compilation.UserControlCompiler
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002,2003 Ximian, Inc (http://www.ximian.com)
- //
- using System;
- using System.Web.UI;
- namespace System.Web.Compilation
- {
- class UserControlCompiler : TemplateControlCompiler
- {
- UserControlParser parser;
- public UserControlCompiler (UserControlParser parser)
- : base (parser)
- {
- this.parser = parser;
- }
- public static Type CompileUserControlType (UserControlParser userControlParser)
- {
- UserControlCompiler pc = new UserControlCompiler (userControlParser);
- return pc.GetCompiledType ();
- }
- }
- }
|