ReadArray Method (String, String, Guid[], Int32, Int32)
Collapse the table of content
Expand the table of content

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.

Namespace:  System.Xml
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.

Return Value

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

ExceptionCondition
ArgumentNullException

array is Nothing.

ArgumentOutOfRangeException

offset is < 0 or > array length.

ArgumentOutOfRangeException

count is < 0 or > array length minus offset.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft