public TransientServerException(LocalizedString explain, Exception innerException, RetrySchedule retrySchedule) : base(explain, innerException, retrySchedule) { }
private TimeSpan GetNextRetryInterval(RetrySchedule retrySchedule) { return(retrySchedule.GetRetryInterval(this.numberConsecutiveFailures - 1U)); }
public TransientServerException(RetrySchedule retrySchedule) : this(LocalizedString.Empty, null, retrySchedule) { }
// Token: 0x06000286 RID: 646 RVA: 0x0000E6FA File Offset: 0x0000C8FA protected AITransientException(LocalizedString explain, Exception innerException, RetrySchedule retrySchedule) : base(explain, innerException) { this.retrySchedule = (retrySchedule ?? AITransientException.genericSchedule); }