mscorlib(4.0.0.0) API with additions
XmlNameTable.cs
1 namespace System.Xml
2 {
4  [global::__DynamicallyInvokable]
5  public abstract class XmlNameTable
6  {
17  [global::__DynamicallyInvokable]
18  public abstract string Get(char[] array, int offset, int length);
19 
25  [global::__DynamicallyInvokable]
26  public abstract string Get(string array);
27 
38  [global::__DynamicallyInvokable]
39  public abstract string Add(char[] array, int offset, int length);
40 
46  [global::__DynamicallyInvokable]
47  public abstract string Add(string array);
48 
50  [global::__DynamicallyInvokable]
51  protected XmlNameTable()
52  {
53  }
54  }
55 }
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 sp...
XmlNameTable()
Initializes a new instance of the T:System.Xml.XmlNameTable class.
Definition: XmlNameTable.cs:51
Table of atomized string objects.
Definition: XmlNameTable.cs:5
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.