| 1234567891011121314151617181920 |
- //
- // System.Web.UI.IDataBindingsAccessor.cs
- //
- // Author:
- // Bob Smith <[email protected]>
- //
- // (C) Bob Smith
- //
- using System;
- using System.Web;
- namespace System.Web.UI
- {
- public interface IDataBindingsAccessor
- {
- DataBindingCollection DataBindings {get;}
- bool HasDataBindings {get;}
- }
- }
|