XPath to the top_level <Item> tag(s) in item's internal AML.

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

Syntax

C#
public static readonly string XPathResultItem
Visual Basic (Declaration)
Public Shared ReadOnly XPathResultItem As String
J#
public static final String XPathResultItem
JScript
public static final var XPathResultItem : String

Remarks

Note that this field is not available from JavaScript. Use the string constant //Result/Item instead.

Examples

CopyC#
...
Item response = myitem.apply();
if( !response.isError() )
{
  ArasXmlNodeList item_nodes = response.dom.SelectNodes( Item.XPathResultItem );
  ...
}
...

See Also