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.Get (Char[], Int32, Int32)

Find the matching string atom given a range of characters.

[Visual Basic]
Overloads Overridable Public Function Get( _
   ByVal key() As Char, _
   ByVal start As Integer, _
   ByVal len As Integer _
) As String
[C#]
public virtual string Get(
   char[] key,
   int start,
   int len
);
[C++]
public: virtual String* Get(
   __wchar_t* key[],
   int start,
   int len
);
[JScript]
public function Get(
   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 matching string in the NameTable.

See Also

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