This topic has not yet been rated - Rate this topic

XmlNameTable Class

Table of atomized string objects.

System.Object
  System.Xml.XmlNameTable
    System.Xml.NameTable

Namespace:  System.Xml
Assembly:  System.Xml (in System.Xml.dll)
public abstract class XmlNameTable

The XmlNameTable type exposes the following members.

  Name Description
Protected method Supported by the XNA Framework Supported by Portable Class Library XmlNameTable Initializes a new instance of the XmlNameTable class.
Top
  Name Description
Public method Supported by the XNA Framework Supported by Portable Class Library Add(String) When overridden in a derived class, atomizes the specified string and adds it to the XmlNameTable.
Public method Supported by the XNA Framework Supported by Portable Class Library Add(Char[], Int32, Int32) When overridden in a derived class, atomizes the specified string and adds it to the XmlNameTable.
Public method Supported by the XNA Framework Supported by Portable Class Library Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Supported by the XNA Framework Supported by Portable Class Library Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method Supported by the XNA Framework Supported by Portable Class Library Get(String) When overridden in a derived class, gets the atomized string containing the same value as the specified string.
Public method Supported by the XNA Framework Supported by Portable Class Library Get(Char[], Int32, Int32) When overridden in a derived class, gets the atomized string containing the same characters as the specified range of characters in the given array.
Public method Supported by the XNA Framework Supported by Portable Class Library GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method Supported by the XNA Framework Supported by Portable Class Library GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method Supported by the XNA Framework Supported by Portable Class Library MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Supported by the XNA Framework Supported by Portable Class Library ToString Returns a string that represents the current object. (Inherited from Object.)
Top

Several classes, such as XmlDocument and XmlReader, use the XmlNameTable class internally to store attribute and element names. When an element or attribute name occurs multiple times in an XML document, it is stored only once in the XmlNameTable.

The names are stored as common language runtime (CLR) object types. This enables you to do object comparisons on these strings rather than a more expensive string comparison. These string objects are referred to as atomized strings.

XmlNameTable is implemented in the NameTable class.

The following example compares two element names.



      // Add the element names to the NameTable.
      NameTable nt = new NameTable();
      object book = nt.Add("book");
      object title = nt.Add("title");

       // Create a reader that uses the NameTable.
       XmlReaderSettings settings = new XmlReaderSettings();
       settings.NameTable = nt;
       XmlReader reader = XmlReader.Create("books.xml", settings);

       while (reader.Read()) {
          if (reader.NodeType == XmlNodeType.Element) {
            // Cache the local name to prevent multiple calls to the LocalName property.
            object localname = reader.LocalName;

            // Do a comparison between the object references. This just compares pointers.
            if (book == localname) {
                // Add additional processing here.
            }
            // Do a comparison between the object references. This just compares pointers.
            if (title == localname) {
               // Add additional processing here.
            }

          } 

       }  // End While

      // Close the reader.
      reader.Close();     



.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Portable Class Library

Supported in: Portable Class Library

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ