ReadElementContentAsLong()

XmlReader::ReadElementContentAsLong() method

Reads the current element and returns the contents as a 64-bit signed integer.

virtual int64_t System::Xml::XmlReader::ReadElementContentAsLong()

Return Value

The element content as a 64-bit signed integer.

XmlReader::ReadElementContentAsLong(String, String) method

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 64-bit signed integer.

virtual int64_t System::Xml::XmlReader::ReadElementContentAsLong(String localName, String namespaceURI)

Arguments

ParameterTypeDescription
localNameStringThe local name of the element.
namespaceURIStringThe namespace URI of the element.

Return Value

The element content as a 64-bit signed integer.

See Also