Click or drag to resize

ItemXPathFault Field

XPath to the root <Fault> node in case the instance represents an "error" item.

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

Field Value

Type: String
Remarks
It's recommended to use get\setErrorXXX() methods (e.g. getErrorDetails() or setErrorDetails(), etc.) in order to get\set fault information. Note that this field is not available from JavaScript.
Examples
...
Item response = myitem.apply();
if( response.isError() )
{
  ArasXmlNode fault_node = response.dom.SelectNodes( Item.XPathFault );
  ...
}
...
See Also