XmlNameTable Class
NuGet: GHIElectronics.TinyCLR.System.Xml
Assembly: GHIElectronics.TinyCLR.System.Xml
Namespace: System.Xml
Atomized-string table shared between readers and writers.
public abstract class XmlNameTable
Methods
Add(string array)
public abstract string Add(string array)
Atomizes the specified string and adds it to the table.
Returns string
Add(char[] array, int offset, int length)
public abstract string Add(char[] array, int offset, int length)
Atomizes the specified character range and adds it to the table.
Returns string
Get(string array)
public abstract string Get(string array)
Gets the atomized string equal to the specified string, or null if it is not in the table.
Returns string
Get(char[] array, int offset, int length)
public abstract string Get(char[] array, int offset, int length)
Gets the atomized string equal to the specified character range, or null if it is not in the table.
Returns string