* Page.cs: Don't tell the response to cache anymore. This is done
[mono.git] / mcs / class / System.Web / System.Web.UI / IHierarchyData.cs
1 //
2 // System.Web.UI.IHierarchyData
3 //
4 // Authors:
5 //      Ben Maurer (bmaurer@users.sourceforge.net)
6 //
7 // (C) 2003 Ben Maurer
8 //
9
10 #if NET_1_2
11 namespace System.Web.UI {
12         public interface IHierarchyData {
13                 IHierarchicalEnumerable GetChildren ();
14                 IHierarchicalEnumerable GetParent ();
15                 bool HasChildren { get; }
16                 object Item { get; }
17                 string Path { get; }
18                 string Type { get; }
19         }
20 }
21 #endif
22