NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DataDocumentNavigator.NameTable

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;

Property Value

XmlNameTable enabling you to get the atomized version of a string within the node.

Remarks

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.

See Also

DataDocumentNavigator Class | DataDocumentNavigator Members | System.NewXml Namespace