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

XmlHierarchicalDataSourceView.cs « System.Web.UI.WebControls « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e62ea4c1b480fe726580d528acd4890fcf4d891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
// System.Web.UI.WebControls.XmlHierarchicalDataSourceView
//
// Authors:
//	Ben Maurer (bmaurer@users.sourceforge.net)
//
// (C) 2003 Ben Maurer
//

#if NET_2_0
using System.Collections;
using System.Collections.Specialized;
using System.Text;
using System.Xml;

namespace System.Web.UI.WebControls {
	public class XmlHierarchicalDataSourceView : HierarchicalDataSourceView	{
		internal XmlHierarchicalDataSourceView (XmlNodeList nodeList)
		{
			this.nodeList = nodeList;
		}
		
		public override IHierarchicalEnumerable GetHierarchicalList ()
		{
			return new XmlHierarchicalEnumerable (nodeList);
		}
		
		XmlNodeList nodeList;
	}
}
#endif