XmlDictionaryReader.ReadArray Method (XmlDictionaryString, XmlDictionaryString, Guid[], 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 Guid nodes into a typed array.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
public virtual int ReadArray( XmlDictionaryString localName, XmlDictionaryString namespaceUri, Guid[] array, int offset, int count )
Parameters
- localName
- Type: System.Xml.XmlDictionaryString
The local name of the element.
- namespaceUri
- Type: System.Xml.XmlDictionaryString
The namespace URI of the element.
- array
- Type:
System.Guid
[]
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: