Sets the iterator page size for independent object sets returned by PropertyIndependentObjectSet properties. The iterator page size determines how many elements of an independent object set are retrieved from the server during each fetch. If the filter element of a property has a value for pageSize, the server uses the filter element's value instead of this global value. If neither the global value nor the filter element value is specified, by default the server uses the value of the QueryPageDefaultSize property of the ServerCacheConfiguration object (the default for this property is 500). If the page size exceeds the value of the QueryPageMaxSize property of the ServerCacheConfiguration object (the default for this property is 1000), the server uses the value of the QueryPageMaxSize property instead.

Namespace:  FileNet.Api.Property
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Public Overridable Sub SetPageSize ( _
	pageSize As Integer _
)
C#
public virtual void SetPageSize(
	int pageSize
)
Visual C++
public:
virtual void SetPageSize(
	int pageSize
)
JavaScript
function setPageSize(pageSize);

Parameters

pageSize
Type: System..::.Int32
An int specifying the iterator page size for independent object sets.

ToggleSee Also