StoredSearch Element

System.Object
  SearchRequestType
    StoredSearch
Client Declaration
  public class StoredSearch
Represents information specifying a stored search.

Element Structure

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).

Base Element Inheritance

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). If this attribute is false, the maxElements attribute is ignored.
  • 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 of a continuable query. This attribute is ignored if the continuable attribute is false. If this attribute is omitted or a value of -1 is specified, the default page size will apply (the QueryPageDefaultSize property value of a ServerCacheConfiguration object).
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).

XML Schema

<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>