Skip to main content

NameTable Class

NuGet: GHIElectronics.TinyCLR.System.Xml
Assembly: GHIElectronics.TinyCLR.System.Xml
Namespace: System.Xml

Hashtable-backed XmlNameTable.

public class NameTable : XmlNameTable

Constructors

NameTable()

public NameTable()

Initializes a new instance of the NameTable class.

Methods

Add(string array)

public override string Add(string array)

Atomizes the specified string and adds it to the table. (inherited)

Returns string

Add(char[] array, int offset, int length)

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

Atomizes the specified character range and adds it to the table. (inherited)

Returns string

Get(string array)

public override string Get(string array)

Gets the atomized string equal to the specified string, or null if it is not in the table. (inherited)

Returns string

Get(char[] array, int offset, int length)

public override 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. (inherited)

Returns string