DirectorySearcher.ServerPageTimeLimit Property

Definition

Gets or sets a value indicating the maximum amount of time the server should search for an individual page of results. This is not the same as the time limit for the entire search.

C#
public TimeSpan ServerPageTimeLimit { get; set; }
C#
[System.DirectoryServices.DSDescription("DSServerPageTimeLimit")]
public TimeSpan ServerPageTimeLimit { get; set; }

Property Value

A TimeSpan that represents the amount of time the server should search for a page of results.

The default value is -1 seconds, which means to search indefinitely.

Attributes

Remarks

The minimum resolution of this property is one second. Fractions of seconds are ignored.

When the time limit is reached, the server stops searching and returns the results that have accumulated up to that point, along with a cookie containing the information about where to resume searching.

Примітка

This property only applies to searches where PageSize is set to a value that is not the default of 0.

Applies to

Продукт Версії
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also