XmlDictionaryReader.ReadSingleArray Method

Definition

Reads the contents of a series of nodes into an array of float numbers (Single).

Overloads

ReadSingleArray(String, String)

Reads the contents of a series of nodes with the given localName and namespaceUri into an array of float numbers (Single).

ReadSingleArray(XmlDictionaryString, XmlDictionaryString)

Reads the contents of a series of nodes with the given localName and namespaceUri into an array of float numbers (Single).

ReadSingleArray(String, String)

Source:
XmlDictionaryReader.cs
Source:
XmlDictionaryReader.cs
Source:
XmlDictionaryReader.cs

Reads the contents of a series of nodes with the given localName and namespaceUri into an array of float numbers (Single).

public:
 virtual cli::array <float> ^ ReadSingleArray(System::String ^ localName, System::String ^ namespaceUri);
public virtual float[] ReadSingleArray (string localName, string namespaceUri);
abstract member ReadSingleArray : string * string -> single[]
override this.ReadSingleArray : string * string -> single[]
Public Overridable Function ReadSingleArray (localName As String, namespaceUri As String) As Single()

Parameters

localName
String

The local name of the element.

namespaceUri
String

The namespace URI of the element.

Returns

Single[]

An array of float numbers (Single).

Remarks

The buffer allocated by this read operation is limited by the MaxArrayLength quota.

Applies to

ReadSingleArray(XmlDictionaryString, XmlDictionaryString)

Source:
XmlDictionaryReader.cs
Source:
XmlDictionaryReader.cs
Source:
XmlDictionaryReader.cs

Reads the contents of a series of nodes with the given localName and namespaceUri into an array of float numbers (Single).

public:
 virtual cli::array <float> ^ ReadSingleArray(System::Xml::XmlDictionaryString ^ localName, System::Xml::XmlDictionaryString ^ namespaceUri);
public virtual float[] ReadSingleArray (System.Xml.XmlDictionaryString localName, System.Xml.XmlDictionaryString namespaceUri);
abstract member ReadSingleArray : System.Xml.XmlDictionaryString * System.Xml.XmlDictionaryString -> single[]
override this.ReadSingleArray : System.Xml.XmlDictionaryString * System.Xml.XmlDictionaryString -> single[]
Public Overridable Function ReadSingleArray (localName As XmlDictionaryString, namespaceUri As XmlDictionaryString) As Single()

Parameters

localName
XmlDictionaryString

The local name of the element.

namespaceUri
XmlDictionaryString

The namespace URI of the element.

Returns

Single[]

An array of float numbers (Single).

Remarks

The buffer allocated by this read operation is limited by the MaxArrayLength quota.

Applies to