XPath to the <Result> tag in server response XML.
Namespace:
Aras.IOM
Assembly:
IOM (in IOM.dll) Version: 14.0.9.36244
Syntaxpublic static readonly string XPathResult
Public Shared ReadOnly XPathResult As String
public static final String XPathResult
public static final var XPathResult : String
Field Value
Type:
String
Remarks
Note that this field is not available from JavaScript.
Use the string constant //Result instead.
Examples...
Item response = myitem.apply();
if( !response.isError() )
{
ArasXmlNode result_node = response.dom.SelectSingleNode( Item.XPathResult );
...
}
...
See Also