<PackageReference Include="System.Xml.XmlDocument" Version="4.0.1-beta-23409" />

XmlNodeList

public abstract class XmlNodeList : IEnumerable, IDisposable
Represents an ordered collection of nodes.
public abstract int Count { get; }

Gets the number of nodes in the XmlNodeList.

public virtual XmlNode this[int i] { get; }

Gets a node at the given index.

protected XmlNodeList()

Initializes a new instance of the XmlNodeList class.

public abstract IEnumerator GetEnumerator()

Gets an enumerator that iterates through the collection of nodes.

public abstract XmlNode Item(int index)

Retrieves a node at the given index.

protected virtual void PrivateDisposeNodeList()

Disposes resources in the node list privately.