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)

ToggleSyntax

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

ToggleRemarks

ToggleSee Also