XmlDictionaryReader.ReadArray Method (String, String, array<Int64>[]()[], 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 long integers into a typed array.

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

Syntax

Public Overridable Function ReadArray ( _
    localName As String, _
    namespaceUri As String, _
    array As Long(), _
    offset As Integer, _
    count As Integer _
) As Integer
public virtual int ReadArray(
    string localName,
    string namespaceUri,
    long[] array,
    int offset,
    int count
)

Parameters

  • array
    Type: array<System..::.Int64>[]()[]
    The array into which the integers are put.

Return Value

Type: System..::.Int32
The number of integers put in the array.

Exceptions

Exception Condition
ArgumentNullException

array is nullNothingnullptra null reference (Nothing in Visual Basic).

ArgumentOutOfRangeException

offset is < 0 or > array length.

ArgumentOutOfRangeException

count is < 0 or > array length minus offset.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Platforms

Windows Phone

See Also

Reference

XmlDictionaryReader Class

ReadArray Overload

System.Xml Namespace