System.Object
SearchRequestType
StoredSearch
(not supported)
Client Declaration
public abstract class SearchRequestType
The base, abstract element for search-related elements and provides the input
for the ExecuteSearch
operation.
Elements
PropertyFilterType
SelectionFilter
: Optional element specifying a property filter to be applied to the elements of the result set.
Attributes
Boolean
continuable
: 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
: 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
: 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
).
<xsd:complexType name="SearchRequestType" abstract="true"> <xsd:sequence> <xsd:element name="SelectionFilter" type="PropertyFilterType" minOccurs="0"/> </xsd:sequence> <xsd:attribute name="maxElements" type="xsd:int"/> <xsd:attribute name="continueFrom" type="xsd:string"/> <xsd:attribute name="continuable" type="xsd:boolean"/> </xsd:complexType>