Specifies the number of times an operation will be retried before failure is reported. The default value is 6. If the first execution of the function fails, the system will retry the function 6 more times (for a total of 7 tries).


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

Syntax

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

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

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

Remarks

See Also