XPath to the <Result> tag in server response XML.
Namespace:
Aras.IOM
Assembly:
IOM (in IOM.dll) Version: 11.0.0.6296
Syntax
C# |
---|
public static readonly string XPathResult |
Visual Basic (Declaration) |
---|
Public Shared ReadOnly XPathResult As String |
J# |
---|
public static final String XPathResult |
JScript |
---|
public static final var XPathResult : String |
Remarks
Examples
CopyC#
...
Item response = myitem.apply();
if( !response.isError() )
{
ArasXmlNode result_node = response.dom.SelectSingleNode( Item.XPathResult );
...
}
...
See Also