Gets the XmlNameTable associated with this implementation.
[Visual Basic] Public ReadOnly Property NameTable As XmlNameTable [C#] public XmlNameTable NameTable {get;} [C++] public: __property XmlNameTable* get_NameTable(); [JScript] public function get NameTable() : XmlNameTable;
XmlNameTable enabling you to get the atomized version of a string within the node.
All node and attribute names returned from this class are atomized using this nametable. This means that when the same name is returned multiple times (like "Customer"), then the same String object will be returned for that name. This makes it possible for you to write efficient code that does object pointer comparisons on these strings instead of expensive string comparisons.
XmlDocument Class | XmlDocument Members | System.NewXml Namespace