1 //------------------------------------------------------------------------------
2 // <copyright file="IDataBindingsAccessor.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 
11     /// <devdoc>
12     ///   <para>Allows designer functionality to access information about a UserControl, that is
13     ///     applicable at design-time only.
14     ///   </para>
15     /// </devdoc>
16     public interface IUserControlDesignerAccessor {
17 
18 
19         string InnerText {
20             get;
21             set;
22         }
23 
24 
25         string TagName {
26             get;
27             set;
28         }
29     }
30 }
31