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

Namespace:  Aras.IOM
Assembly:  IOM (in IOM.dll) Version: 11.0.0.6296

Syntax

C#
public static readonly string XPathFault
Visual Basic (Declaration)
Public Shared ReadOnly XPathFault As String
J#
public static final String XPathFault
JScript
public static final var XPathFault : 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

CopyC#
...
Item response = myitem.apply();
if( response.isError() )
{
  ArasXmlNode fault_node = response.dom.SelectNodes( Item.XPathFault );
  ...
}
...

See Also