Click or drag to resize
XmlNameTableAdd Method (Char, Int32, Int32)
When overridden in a derived class, atomizes the specified string and adds it to the XmlNameTable.

Namespace: System.Xml
Assembly: CSharpXamlForHtml5.System.Xml.dll (in CSharpXamlForHtml5.System.Xml.dll.dll) Version: 1.0.0.0
Syntax
C#
public abstract string Add(
	char[] array,
	int offset,
	int length
)

Parameters

array
Type: SystemChar
The character array containing the name to add.
offset
Type: SystemInt32
Zero-based index into the array specifying the first character of the name.
length
Type: SystemInt32
The number of characters in the name.

Return Value

Type: String
The new atomized string or the existing one if it already exists. If length is zero, String.Empty is returned.
See Also