Partilhar via


RetryPolicy.OnShouldRetry(TimeSpan, Int32, TimeSpan) Método

Definição

Calcula o intervalo de repetição para a política de repetição.

protected abstract bool OnShouldRetry (TimeSpan remainingTime, int currentRetryCount, out TimeSpan retryInterval);
abstract member OnShouldRetry : TimeSpan * int * TimeSpan -> bool
Protected MustOverride Function OnShouldRetry (remainingTime As TimeSpan, currentRetryCount As Integer, ByRef retryInterval As TimeSpan) As Boolean

Parâmetros

remainingTime
TimeSpan

O tempo restante.

currentRetryCount
Int32

O número total de repetições.

retryInterval
TimeSpan

O intervalo de repetição.

Retornos

Se esse método retornar true, a operação de repetição ocorrerá depois que o thread ficar ocioso por um período de tempo igual a retryInterval.

Aplica-se a