Get Method (Char[], Int32, Int32)
Collapse the table of content
Expand the table of content

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.

Namespace:  System.Xml
Assembly:  System.Xml (in System.Xml.dll)

public override string Get(
	char[] key,
	int start,
	int len
)

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.String
The atomized string or null if the string has not already been atomized. If len is zero, String.Empty is returned.

ExceptionCondition
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.

For more information on atomized strings, see NameTable.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft