System.Object
StoredSearch
Client Declaration
public class StoredSearch
NOTE This element is not supported.
Represents information specifying a stored search.
Elements
System.Xml.XmlElement
ExecuteXML
: [request] Optional element specifying the XML to execute for the stored search. Elements and attributes for which schema information can be obtained will be validated, but those that cannot be validated will not cause an error.ObjectReference
SearchObject
: [request] Optional element specifying the Content Engine object representing the stored search.Attributes
RepositorySearchModeType
repositorySearchMode
: [request] Optional expression
specifying whether rows or objects are searched. If this attribute is not specified, the default search mode is row search. (Only row search is supported for this release.)Attributes Specific to .NET Clients
Boolean
repositorySearchModeSpecified
: Optional expression specifying whether repositorySearchMode
has a value (true
) or not (false
).
Elements
PropertyFilterType
SelectionFilter
: [request] Optional element specifying a property filter to be applied to the elements of the result set. Attributes
Boolean
continuable
: [request] Optional expression specifying whether
the client requires paging and continuation capability for this search (true
)
or not (false
).String
continueFrom
: [request] Optional expression specifying the
value of CollectionTerminator
element from a previously returned
page. This value indicates the start point of the current page. Int32
maxElements
: [request] Optional expression specifying the page
size for the currently requested page. A value of -1 returns the entire collection. Attributes Specific to .NET Clients
Boolean
continuableSpecified
: Optional expression specifying whether continuable
has a value (true
) or not (false
).Boolean
maxElementsSpecified
: Optional expression specifying whether maxElements
has a value (true
) or not (false
).
<xsd:complexType name="StoredSearch"> <xsd:complexContent> <xsd:extension base="SearchRequestType"> <xsd:sequence> <xsd:element name="SearchObject" type="ObjectReference"/> <xsd:element name="ExecuteXML"> <xsd:complexType> <xsd:sequence> <xsd:any processContents="lax"/> </xsd:sequence> </xsd:complexType> </xsd:element> </xsd:sequence> <xsd:attribute name="repositorySearchMode" type="RepositorySearchModeType"/> </xsd:extension> </xsd:complexContent> </xsd:complexType>