The maximum amount of time (in seconds) that the server allows a query to run before canceling the query. This property, in conjunction with the DefaultQueryTimeLimit property and the SQL TIMELIMIT option, limit a Content Engine search for a client-to-server RPC; that is, they limit the total time it takes to retrieve one page to the client.

The effective time limit is the minimum of this property and the SQL Timelimit option. If the SQL Timelimit option is not set, the effective time limit is the minimum of this property and the DefaultQueryTimeLimit property.

If the Timelimit option is not set, and neither property is set, the query time is unlimited.

In addition to the time limits that impact client-to-server RPCs, you can set the QueryDatabaseTimeout property, which limits query execution at the database level.

For more information, see Server Query-Timeout Behavior.

Namespace:  FileNet.Api.Core
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Property MaxQueryTimeLimit As Nullable(Of Integer)
C#
Nullable<int> MaxQueryTimeLimit { get; set; }
Visual C++
property Nullable<int> MaxQueryTimeLimit {
	Nullable<int> get ();
	void set (Nullable<int> value);
}
JavaScript
function get_maxQueryTimeLimit();
function set_maxQueryTimeLimit(value);

ToggleRemarks

ToggleSee Also