XmlReaderSettings.NameTable Property

Definition

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.

Applies to