XmlReaderSettings.NameTable Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the XmlNameTable used for atomized string comparisons.
public:
property System::Xml::XmlNameTable ^ NameTable { System::Xml::XmlNameTable ^ get(); void set(System::Xml::XmlNameTable ^ value); };
public System.Xml.XmlNameTable NameTable { get; set; }
public System.Xml.XmlNameTable? NameTable { get; set; }
member this.NameTable : System.Xml.XmlNameTable with get, set
Public Property NameTable As XmlNameTable
Property Value
The XmlNameTable that stores all the atomized strings used by all XmlReader instances created using this XmlReaderSettings object.
The default is null
. The created XmlReader instance will use a new empty NameTable if this value is null
.
Remarks
Set this property to an XmlNameTable instance if you want to share a common name table among all the created XmlReader instances.
Note
The NameTable class is not thread-safe. Therefore it cannot be shared between XmlReader objects that run simultaneously in different threads.