ItemXPathResultItem Field |
XPath to the top_level <Item> tag(s) in item's internal AML.
Namespace:
Aras.IOM
Assembly:
IOM (in IOM.dll) Version: 14.0.9.36244
Syntaxpublic static readonly string XPathResultItem
Public Shared ReadOnly XPathResultItem As String
public static final String XPathResultItem
public static final var XPathResultItem : String
Field Value
Type:
String
Remarks
Note that this field is not available from JavaScript.
Use the string constant //Result/Item instead.
Examples...
Item response = myitem.apply();
if( !response.isError() )
{
ArasXmlNodeList item_nodes = response.dom.SelectNodes( Item.XPathResultItem );
...
}
...
See Also