XmlDictionaryReader.ReadArray Method (String, String, 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)
'Declaration Public Overridable Function ReadArray ( _ localName As String, _ namespaceUri As String, _ array As Guid(), _ offset As Integer, _ count As Integer _ ) As Integer
Parameters
- localName
- Type: System.String
The local name of the element.
- namespaceUri
- Type: System.String
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 Nothing. |
| ArgumentOutOfRangeException | offset is < 0 or > array length. |
| ArgumentOutOfRangeException | count is < 0 or > array length minus offset. |
Show: