DirectorySearcher.SizeLimit Property

Definition

Gets or sets a value indicating the maximum number of objects that the server returns in a search.

public:
 property int SizeLimit { int get(); void set(int value); };
public int SizeLimit { get; set; }
[System.DirectoryServices.DSDescription("DSSizeLimit")]
public int SizeLimit { get; set; }
member this.SizeLimit : int with get, set
[<System.DirectoryServices.DSDescription("DSSizeLimit")>]
member this.SizeLimit : int with get, set
Public Property SizeLimit As Integer

Property Value

The maximum number of objects that the server returns in a search. The default value is zero, which means to use the server-determined default size limit of 1000 entries.

Attributes

Exceptions

The new value is less than zero.

Remarks

The server stops searching after the size limit is reached and returns the results accumulated up to that point.

Note

If you set SizeLimit to a value that is larger than the server-determined default of 1000 entries, the server-determined default is used.

Applies to