XmlReader.ReadElementContentAsBoolean Method (String, String)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
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 Boolean object.
Assembly: System.Xml (in System.Xml.dll)
Parameters
- localName
- Type: System.String
The local name of the element.
- namespaceURI
- Type: System.String
The namespace URI of the element.
| Exception | Condition |
|---|---|
| InvalidOperationException | The XmlReader is not positioned on an element. |
| XmlException | The current element contains child elements. -or- The element content cannot be converted to the requested type. |
| ArgumentNullException | The method is called with null arguments. |
| ArgumentException | The specified local name and namespace URI do not match that of the current element being read. |