Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

XPathNavigator::NameTable Property

 

When overridden in a derived class, gets the XmlNameTable of the XPathNavigator.

Namespace:   System.Xml.XPath
Assembly:  System.Xml (in System.Xml.dll)

public:
property XmlNameTable^ NameTable {
	virtual XmlNameTable^ get() abstract;
}

Property Value

Type: System.Xml::XmlNameTable^

An XmlNameTable object enabling you to get the atomized version of a String within the XML document.

The XmlNameTable stores atomized strings of any local name, namespace URI, and prefix used by the XPathNavigator. This means that when the same Name is returned multiple times (like "book"), the same String object is returned for that Name. This makes it possible to write efficient code that does object comparisons on these strings, instead of expensive string comparisons.

.NET Framework
Available since 1.1
Silverlight
Available since 4.0
Return to top
Show:
© 2017 Microsoft