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

XmlNodeList.cs « System.Xml « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eff56279b558acbdafec839e94367f97c92986be (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
33
34
35
36
37
38
39
40
41
42
//
// System.Xml.XmlNodeList
//
// Author:
//   Kral Ferch <kral_ferch@hotmail.com>
//
// (C) 2002 Kral Ferch
//

using System;
using System.Collections;

namespace System.Xml
{
	public abstract class XmlNodeList : IEnumerable
	{
		#region Constructors

		protected XmlNodeList() { }

		#endregion

		#region Properties

		public abstract int Count {	get; }

		[System.Runtime.CompilerServices.IndexerName("ItemOf")]
		public virtual XmlNode this [int i]	{
			get { return Item(i); }
		}

		#endregion

		#region Methods

		public abstract IEnumerator GetEnumerator ();

		public abstract XmlNode Item (int index);

		#endregion
	}
}