XmlDictionaryReader.ReadDoubleArray Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
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
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)
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
- Source:
- XmlDictionaryReader.cs
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
The node's content represented as a Double array.
Remarks
The buffer allocated by this read operation is limited by the MaxArrayLength quota.