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
Examples
CopyC#
...
Item response = myitem.apply();
if( response.isError() )
{
ArasXmlNode fault_node = response.dom.SelectNodes( Item.XPathFault );
...
}
...
See Also