Selects the backoff strategy used between retry attempts.
public enum RetryBackoffStrategy
kind:method, kind:property, kind:ctor. Press Esc to clear.ExponentialWaits an exponentially increasing delay (base × 2^(attempt-1)) between attempts.LinearWaits a linearly increasing delay (base × attempt) between attempts.