XmlDictionaryReader.ReadDoubleArray Method

Definition

Converts a node's content to a Double array.

Overloads

ReadDoubleArray(String, String)

Converts a node's content to a Double array.

ReadDoubleArray(XmlDictionaryString, XmlDictionaryString)

Converts a node's content to a Double array.

ReadDoubleArray(String, String)

Converts a node's content to a Double array.

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

Parameters

localName
String

The local name of the element.

namespaceUri
String

The namespace URI of the element.

Returns

Double[]

The node's content represented as a Double array.

Remarks

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

Applies to

ReadDoubleArray(XmlDictionaryString, XmlDictionaryString)

Converts a node's content to a Double array.

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

Parameters

localName
XmlDictionaryString

The local name of the element.

namespaceUri
XmlDictionaryString

The namespace URI of the element.

Returns

Double[]

The node's content represented as a Double array.

Remarks

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

Applies to