The maximum amount of time (in seconds) that the server will allow a query to run before canceling the query. This cannot be overridden by an individual query.

Setting this value helps to prevent excessive server resource usage by a single user.


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

Syntax

Visual Basic (Declaration)
Property MaxQueryTimeLimit As Nullable(Of Integer)
C#
Nullable<int> MaxQueryTimeLimit { get; set; }
C++
property Nullable<int> MaxQueryTimeLimit abstract  {
    Nullable<int> get();
    void set(Nullable<intvalue);
}
J#
/** property */
public Nullable<int> get_MaxQueryTimeLimit();

/** property */
public void set_MaxQueryTimeLimit(Nullable<intvalue);
JScript
public function get MaxQueryTimeLimit() : Nullable<int>

public function set MaxQueryTimeLimit(value : Nullable<int>);

Remarks

See Also