IXPathFunction.Evaluate(IList) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Evaluate the function with the specified arguments.
[Android.Runtime.Register("evaluate", "(Ljava/util/List;)Ljava/lang/Object;", "GetEvaluate_Ljava_util_List_Handler:Javax.Xml.Xpath.IXPathFunctionInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Lang.Object? Evaluate (System.Collections.IList? args);
[<Android.Runtime.Register("evaluate", "(Ljava/util/List;)Ljava/lang/Object;", "GetEvaluate_Ljava_util_List_Handler:Javax.Xml.Xpath.IXPathFunctionInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member Evaluate : System.Collections.IList -> Java.Lang.Object
Parameters
- args
- IList
The arguments, null
is a valid value.
Returns
The result of evaluating the XPath
function as an Object
.
- Attributes
Exceptions
If args
cannot be evaluated with this XPath
function.
Remarks
Evaluate the function with the specified arguments.
To the greatest extent possible, side-effects should be avoided in the definition of extension functions. The implementation evaluating an XPath expression is under no obligation to call extension functions in any particular order or any particular number of times.
Java documentation for javax.xml.xpath.XPathFunction.evaluate(java.util.List)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.