1 //------------------------------------------------------------------------------
2 // <copyright file="IBindableTemplate.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6 
7 namespace System.Web.UI {
8 
9     using System;
10     using System.Collections.Specialized;
11 
12     /// <devdoc>
13     /// </devdoc>
14     public interface IBindableTemplate : ITemplate {
15 
16         /// <devdoc>
17         /// Retrives the values of all control properties with two-way bindings.
18         /// </devdoc>
ExtractValues(Control container)19         IOrderedDictionary ExtractValues(Control container);
20     }
21 }
22 
23