Class GraphRetryPolicy

GraphRetryPolicy class

Configures automatic retry handling for transient Microsoft Graph responses.

public class GraphRetryPolicy

Constructors

NameDescription
GraphRetryPolicy()Initializes a new instance of the GraphRetryPolicy class.

Properties

NameDescription
static Default { get; }Gets the default Microsoft Graph retry policy.
BaseDelay { get; set; }Gets or sets the base delay used for exponential backoff when Retry-After is not available.
DelayStrategy { get; set; }Gets or sets the delay strategy.
Enabled { get; set; }Gets or sets a value indicating whether automatic retries are enabled.
MaxDelay { get; set; }Gets or sets the maximum delay used for exponential backoff when Retry-After is not available.
MaxRetryAttempts { get; set; }Gets or sets the maximum number of retry attempts after the initial request.

See Also