| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // System.Xml.XmlNodeList
- //
- // Author:
- // Kral Ferch <[email protected]>
- //
- // (C) 2002 Kral Ferch
- //
- using System;
- using System.Collections;
- namespace System.Xml
- {
- public abstract class XmlNodeList : IEnumerable
- {
- #region Constructors
- protected internal 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
- }
- }
|