Enum GraphRetryDelayStrategy

GraphRetryDelayStrategy enumeration

Specifies how retry delays are calculated for transient Microsoft Graph responses.

public enum GraphRetryDelayStrategy

Values

NameValueDescription
RetryAfterThenExponentialBackoffWithJitter0Uses Retry-After when it is supplied by Microsoft Graph, otherwise falls back to exponential backoff with jitter.
RetryAfterOnly1Uses only Retry-After. If the response does not contain Retry-After, the request is not retried.
ExponentialBackoffWithJitter2Always uses exponential backoff with jitter.

See Also