//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI { using System; using System.Collections.Specialized; /// /// public interface IBindableTemplate : ITemplate { /// /// Retrives the values of all control properties with two-way bindings. /// IOrderedDictionary ExtractValues(Control container); } }