IRecordSequence.RetryAppend Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating whether appends are automatically retried if the log is full.
public:
property bool RetryAppend { bool get(); void set(bool value); };
public bool RetryAppend { get; set; }
member this.RetryAppend : bool with get, set
Public Property RetryAppend As Boolean
Property Value
true
if appends are automatically retried if the log is full; otherwise, false
. The default is true
.
Exceptions
The property was accessed after the sequence has been disposed of.
Remarks
If the value of this property is true
, and an Append call fails because there is not enough space in the sequence, the record sequence will try to free space and retry the append.