DirectorySearcher.ServerPageTimeLimit Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
public:
property TimeSpan ServerPageTimeLimit { TimeSpan get(); void set(TimeSpan value); };
public TimeSpan ServerPageTimeLimit { get; set; }
[System.DirectoryServices.DSDescription("DSServerPageTimeLimit")]
public TimeSpan ServerPageTimeLimit { get; set; }
member this.ServerPageTimeLimit : TimeSpan with get, set
[<System.DirectoryServices.DSDescription("DSServerPageTimeLimit")>]
member this.ServerPageTimeLimit : TimeSpan with get, set
Public Property ServerPageTimeLimit As TimeSpan
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.
Note
This property only applies to searches where PageSize is set to a value that is not the default of 0.