<PackageReference Include="System.Xml.ReaderWriter" Version="4.0.11-beta-23409" />

XmlNameTable

public abstract class XmlNameTable
Table of atomized string objects.
protected XmlNameTable()

Initializes a new instance of the XmlNameTable class.

public abstract string Add(char[] array, int offset, int length)

When overridden in a derived class, atomizes the specified string and adds it to the XmlNameTable.

public abstract string Add(string array)

When overridden in a derived class, atomizes the specified string and adds it to the XmlNameTable.

public abstract string Get(char[] array, int offset, int length)

When overridden in a derived class, gets the atomized string containing the same characters as the specified range of characters in the given array.

public abstract string Get(string array)

When overridden in a derived class, gets the atomized string containing the same value as the specified string.