Click or drag to resize

ItemXPathResult Field

XPath to the <Result> tag in server response XML.

Namespace:  Aras.IOM
Assembly:  IOM (in IOM.dll) Version: 14.0.20.39432
Syntax
public static readonly string XPathResult

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