System.Object
ObjectSetType
Client Declaration
public class ObjectSetType
Represents a collection of objects in response to a GetObjects
or ExecuteSearch
operation. ObjectSetType
can represent a complete collection or only a portion (page) of a collection.
Elements
CollectionTerminatorType
CollectionTerminator
: [response] Optional element specifying the
status of navigation within an object set collection. Resolves to one of the following elements, depending on navigation status:
EndOfCollection
: The last result row is included in this response. If the end of the page coincides with the end of the collection (this can occur if the collection contains an exact multiple of the page size) EndOfPage
is returned, not EndOfCollection
.EndOfPage
: The object set contains the maximum number of object elements (page size) requested by the client. TraversalError
: A error has occurred in traversing the object set.ObjectValue[]
Object
:
[response] Optional element specifying an array of Content Engine objects.
<xsd:complexType name="ObjectSetType"> <xsd:sequence> <xsd:element name="Object" type="ObjectValue" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="CollectionTerminator" type="CollectionTerminatorType" minOccurs="0"/> </xsd:sequence> </xsd:complexType>