Specifies the Active Directory Service provider connection timeout in milliseconds. The default is 500 milliseconds. If the connection is across a WAN, consider increasing the value.

When getting back a collection of domain controllers for a given domain, use this property in an LDAP connection request to determine if a given domain controller in the domain is up and running. If a timeout exception occurs in the specified time, assume the domain controller is not running and try the next one.


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

Syntax

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

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

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

Remarks

See Also