Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IDataBindingsAccessor.cs « System.Web.UI « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ff7f00b2dac0b6a3d6164990ef87461a26a912d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.Web.UI.IDataBindingsAccessor.cs
//
// Author:
//   Bob Smith <bob@thestuff.net>
//
// (C) Bob Smith
//

using System;
using System.Web;

namespace System.Web.UI
{
        public interface IDataBindingsAccessor
        {
                DataBindingCollection DataBindings {get;}
                bool HasDataBindings {get;}
        }
}