FileRecordSequence.RetryAppend Propriedade
Definição
Obtém ou define um valor que indica se há ou não novas tentativas automáticas de acréscimos se o log estiver cheio.Gets or sets a value indicating whether or not 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
Valor da propriedade
true Se o acréscimos for repetido automaticamente se o log estiver cheio; caso contrário, false .true if appends are automatically retried if the log is full; otherwise, false. O padrão é true.The default is true.
Implementações
Exceções
A propriedade foi acessada depois que a sequência foi descartada.The property was accessed after the sequence has been disposed of.
Comentários
Se o valor dessa propriedade for true e uma Append chamada falhar porque não há espaço suficiente na sequência, a sequência de registro tentará liberar espaço e tentará o acréscimo novamente.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.