NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

NameTable.Add (Char[], Int32, Int32)

Add the given string to the NameTable or return the existing string if it is already in the NameTable.

[Visual Basic]
Overloads Overridable Public Function Add( _
   ByVal key() As Char, _
   ByVal start As Integer, _
   ByVal len As Integer _
) As String
[C#]
public virtual string Add(
   char[] key,
   int start,
   int len
);
[C++]
public: virtual String* Add(
   __wchar_t* key[],
   int start,
   int len
);
[JScript]
public function Add(
   key : Char[],
   start : int,
   len : int
) : String;

Parameters

key
The character array contains the string to be looked up. The start and length define the position and length of this string within the character array.
start
The zero based offset into the character array defining the start of the string.
len
The number of characters in the string.

Return Value

The new string added or the matching string found the NameTable.

See Also

NameTable Class | NameTable Members | System.Data.XML Namespace | NameTable.Add Overload List