Name

XmlNamedNodeMap

Synopsis

This class represents a collection of nodes accessed by index or name. This is the abstract parent class of XmlAttributeCollection.

public class XmlNamedNodeMap : IEnumerable {
// Public Instance Properties
   public virtual int Count{get; }
// Public Instance Methods
   public virtual IEnumerator GetEnumerator( );        
// implements IEnumerable
   public virtual XmlNode GetNamedItem(string name);
   public virtual XmlNode GetNamedItem(string localName, string namespaceURI);
   public virtual XmlNode Item(int index);
   public virtual XmlNode RemoveNamedItem(string name);
   public virtual XmlNode RemoveNamedItem(string localName, string namespaceURI);
   public virtual XmlNode SetNamedItem(XmlNode node);
}

Subclasses

XmlAttributeCollection

Returned By

XmlDocumentType.{Entities, Notations}

Get C# in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.