XmlDictionaryWriter.WriteArray Method (String, XmlDictionaryString, XmlDictionaryString, Single[], 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 Single array.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
public virtual void WriteArray( string prefix, XmlDictionaryString localName, XmlDictionaryString namespaceUri, float[] array, int offset, int count )
Parameters
- prefix
- Type: System.String
The namespace prefix.
- 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.Single
[]
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.
| Exception | Condition |
|---|---|
| ArgumentNullException | array is null. |
| ArgumentOutOfRangeException | offset is < 0 or > array length. |
| ArgumentOutOfRangeException | count is < 0 or > array length minus offset. |
Show: