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.9.36244
Syntaxpublic static readonly string XPathFault
Public Shared ReadOnly XPathFault As String
public static final String XPathFault
public static final var XPathFault : String
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