| 1234567891011121314151617181920212223242526272829 |
- //
- // System.Web.UI.CompiledTemplateBuilder
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002 Ximian, Inc (http://www.ximian.com)
- //
- // This is used in the generated C# code from MS and xsp does the same.
- // It just seems to be a container implementing an ITemplate interface.
- namespace System.Web.UI {
- public class CompiledTemplateBuilder : ITemplate
- {
- private BuildTemplateMethod templateMethod;
- public CompiledTemplateBuilder (BuildTemplateMethod templateMethod)
- {
- this.templateMethod = templateMethod;
- }
- public virtual void InstantiateIn (Control ctrl)
- {
- templateMethod (ctrl);
- }
- }
- }
|