//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI { using System; /// /// Used to access data bindings of a Control. /// Only valid for use at design-time. /// public interface IDataBindingsAccessor { /// /// Indicates a collection of all data bindings on the control. This property is /// read-only. /// DataBindingCollection DataBindings { get; } /// /// Returns whether the control contains any data binding logic. This method is /// only accessed by RAD designers. /// bool HasDataBindings { get; } } }