Gets the XmlNameTable associated with this implementation.
[Visual Basic] Overridable Public ReadOnly Property NameTable As XmlNameTable [C#] public XmlNameTable NameTable {override get;} [C++] public: __property virtual 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.
DataDocumentNavigator Class | DataDocumentNavigator Members | System.NewXml Namespace