Exemplo n.º 1
0
 public TransientServerException(LocalizedString explain, Exception innerException, RetrySchedule retrySchedule) : base(explain, innerException, retrySchedule)
 {
 }
Exemplo n.º 2
0
 private TimeSpan GetNextRetryInterval(RetrySchedule retrySchedule)
 {
     return(retrySchedule.GetRetryInterval(this.numberConsecutiveFailures - 1U));
 }
Exemplo n.º 3
0
 public TransientServerException(RetrySchedule retrySchedule) : this(LocalizedString.Empty, null, retrySchedule)
 {
 }
Exemplo n.º 4
0
 // 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);
 }