Specifies the number of remaining attempts to process the queue item. When the retry count reaches 0 for a queue item, the item is considered "dead" and no further retries are attempted. If you want to retry a "dead" queue item, reset the retry count from 0 to a positive number. The range of valid values is 0 to 16.


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

Syntax

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

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

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

Remarks

See Also