DirectorySearcher::PageSize Property
.NET Framework (current version)
Gets or sets a value indicating the page size in a paged search.
Assembly: System.DirectoryServices (in System.DirectoryServices.dll)
public: [DSDescriptionAttribute("DSPageSize")] property int PageSize { int get(); void set(int value); }
Property Value
Type: System::Int32The maximum number of objects the server can return in a paged search. The default is zero, which means do not do a paged search.
| Exception | Condition |
|---|---|
| ArgumentException | The new value is less than zero. |
After the server has found the number of objects that are specified by the PageSize property, it will stop searching and return the results to the client. When the client requests more data, the server will restart the search where it left off.
.NET Framework
Available since 1.1
Available since 1.1
Show: