//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* * A factory for populating a control with children and setting attributes on the * control. * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.UI { using System; /// /// /// Provides a factory definition for populating a control with child /// controls from an inline template within a page file. /// /// public interface ITemplate { /// /// /// Iteratively populates a provided /// Control with a sub-hierarchy of child controls represented by the template. /// /// void InstantiateIn(Control container); } }