XmlDictionaryReader.ReadArray Method (String, String, Boolean[], Int32, Int32)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Reads repeated occurrences of Boolean nodes into a typed array.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
public virtual int ReadArray( string localName, string namespaceUri, bool[] array, int offset, int count )
Parameters
- localName
- Type: System.String
The local name of the element.
- namespaceUri
- Type: System.String
The local name of the element.
- array
- Type:
System.Boolean
[]
The array into which the nodes are put.
- offset
- Type: System.Int32
The starting index in the array.
- count
- Type: System.Int32
The number of nodes to put in the array.
| Exception | Condition |
|---|---|
| ArgumentNullException | array is null. |
| ArgumentOutOfRangeException | offset is < 0 or > array length. |
| ArgumentOutOfRangeException | count is < 0 or > array length minus offset. |
Show: