NameTable.Get Method (Char[], Int32, Int32)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the atomized string containing the same characters as the specified range of characters in the given array.
Assembly: System.Xml (in System.Xml.dll)
Parameters
- key
- Type:
System.Char
[]
The character array containing the name to find.
- start
- Type: System.Int32
The zero-based index into the array specifying the first character of the name.
- len
- Type: System.Int32
The number of characters in the name.
Return Value
Type: System.StringThe atomized string or null if the string has not already been atomized. If len is zero, String.Empty is returned.
| Exception | Condition |
|---|---|
| IndexOutOfRangeException | 0 > start -or- start >= key.Length -or- len >= key.Length The above conditions do not cause an exception to be thrown if len =0. |
| ArgumentOutOfRangeException | len < 0. |
Show: