WriteArray Method (String, String, String, Decimal[], Int32, Int32)
TOC
Collapse the table of content
Expand the table of content

XmlDictionaryWriter.WriteArray Method (String, String, String, Decimal(), Int32, Int32)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Writes nodes from a Decimal array.

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

'Declaration
Public Overridable Sub WriteArray ( _
	prefix As String, _
	localName As String, _
	namespaceUri As String, _
	array As Decimal(), _
	offset As Integer, _
	count As Integer _
)

Parameters

prefix
Type: System.String
The namespace prefix.
localName
Type: System.String
The local name of the element.
namespaceUri
Type: System.String
The namespace URI of the element.
array
Type: System.Decimal ()
The array that contains the nodes.
offset
Type: System.Int32
The starting index in the array.
count
Type: System.Int32
The number of nodes to get from 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