Xml.EvaluateBoolean
Overview
Returns boolean value of the current node.
boolean myXml.EvaluateBoolean()
Returns boolean value of the specified xpath.
boolean myXml.EvaluateBoolean(xpath: string)
Arguments
string xpath
XPath to evaluate. If not specified current node is used.
Remarks
This method checks the evaluated value is (non-case sensitive) equal to "false" or "0" or empty value. All other values are evaluated as true value.
Example
Evaluate with a xpath
var isDisabled = $Xml.EvaluateBoolean('//Customer/IsDisabled');
See Also
XPath+and+XQuery
Copyright © 2010 - 2023 Emakin. All rights reserved.