XmlReader.ReadElementContentAsDecimal Method

Definition

Reads the current element value as a Decimal object.

Overloads

ReadElementContentAsDecimal()

Reads the current element and returns the contents as a Decimal object.

ReadElementContentAsDecimal(String, String)

Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a Decimal object.

ReadElementContentAsDecimal()

Source:
XmlReader.cs
Source:
XmlReader.cs
Source:
XmlReader.cs

Reads the current element and returns the contents as a Decimal object.

C#
public virtual decimal ReadElementContentAsDecimal();

Returns

The element content as a Decimal object.

Exceptions

The XmlReader is not positioned on an element.

-or-

An XmlReader method was called before a previous asynchronous operation finished. In this case, InvalidOperationException is thrown with the message "An asynchronous operation is already in progress."

The current element contains child elements.

-or-

The element content cannot be converted to a Decimal.

The method is called with null arguments.

Remarks

This method reads the start tag, the contents of the element, and moves the reader past the end element tag. It expands entities and ignores processing instructions and comments. The element can only contain simple content. That is, it cannot have child elements.

The reader attempts to convert the element content to an Decimal object according to the rules defined by the W3C XML Schema Part 2: Datatypes recommendation.

For more information, see the Remarks section of the XmlReader reference page.

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

ReadElementContentAsDecimal(String, String)

Source:
XmlReader.cs
Source:
XmlReader.cs
Source:
XmlReader.cs

Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a Decimal object.

C#
public virtual decimal ReadElementContentAsDecimal(string localName, string namespaceURI);

Parameters

localName
String

The local name of the element.

namespaceURI
String

The namespace URI of the element.

Returns

The element content as a Decimal object.

Exceptions

The XmlReader is not positioned on an element.

-or-

An XmlReader method was called before a previous asynchronous operation finished. In this case, InvalidOperationException is thrown with the message "An asynchronous operation is already in progress."

The current element contains child elements.

-or-

The element content cannot be converted to a Decimal.

The method is called with null arguments.

The specified local name and namespace URI do not match that of the current element being read.

Remarks

This method reads the start tag, the contents of the element, and moves the reader past the end element tag. It expands entities and ignores processing instructions and comments. The element can only contain simple content. That is, it cannot have child elements.

The reader attempts to convert the element content to an Decimal object according to the rules defined by the W3C XML Schema Part 2: Datatypes recommendation.

For more information, see the Remarks section of the XmlReader reference page.

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0