XmlReader.ReadElementContentAsInt Method (String, String)
Assembly: System.Xml (in system.xml.dll)
public int ReadElementContentAsInt ( String localName, String namespaceURI )
public function ReadElementContentAsInt ( localName : String, namespaceURI : String ) : int
Not applicable.
Parameters
- localName
The local name of the element.
- namespaceURI
The namespace URI of the element.
Return Value
The element content as a 32-bit signed integer.| Exception type | Condition |
|---|---|
| The XmlReader is not positioned on an element. | |
| The current element contains child elements. -or- The element content cannot be converted to a 32-bit signed integer. | |
| The method is called with a null reference (Nothing in Visual Basic) arguments. | |
| The specified local name and namespace URI do not match that of the current element being read. |
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.
If the content is typed xsd:integer, the reader returns an unboxed 32-bit signed integer. If the content is not typed xsd:integer, the reader attempts to convert it to a 32-bit signed integer according to the rules defined by the W3C XML Schema Part 2: Datatypes recommendation.
For more information, see Reading Typed Data.
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Reference
XmlReader ClassXmlReader Members
System.Xml Namespace