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)

Syntax

Visual Basic (Declaration)
Public Overridable Sub SetPageSize( _ 
   ByVal pageSize As Nullable(Of Integer) _ 
)
C#
public virtual void SetPageSize(
   Nullable<int> pageSize
)
C++
public:
 virtual void SetPageSize(
   Nullable<int> pageSize
)
J#
public virtual void SetPageSize(
   Nullable<int> pageSize
)
JScript
public virtual  function SetPageSize(
   pageSize : Nullable<int>
)

Parameters

pageSize
An Integer specifying the iterator page size for independent object sets.

See Also