IExportElementQuery Property Ingeniux CMS Content Store API

Gets and sets the query expression of the export.

Namespace: Ingeniux.CMS
Assembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 9.0.565.0 (9.0.565)
Syntax

string Query { get; set; }

Property Value

Type: String
Examples

Query expression must be a valid XPath expression. Below are a few examples:
"Abstract"                  The element named "Abstract" under the root element.
"/*/Abstract"                The element named "Abstract" under the root element.
"//Abstract"                The element named "Abstract" that is descendant of the root element at any level. This makes for a recursive search that is much slower.
"/*/@Timeout                The "Timeout" attribute of the root element.
"/*/FlashSlideshowComponent/Flash/@URL    The URL attribute of the Flash element, under the FlashSlideshowComponent element, under the root element.
See Also

Reference