Skip to main content

Definition

Assembly: Microsoft.OData.Mcp.Authentication.dll Namespace: Microsoft.OData.Mcp.Authentication.Models Inheritance: System.Enum

Syntax

Microsoft.OData.Mcp.Authentication.Models.BackoffStrategy

Summary

Defines the backoff strategies for retry delays.

Values

NameValueDescription
Fixed0Use a fixed delay between all retry attempts.
Linear1Increase delay linearly with each retry attempt.
Exponential2Increase delay exponentially with each retry attempt.
ExponentialWithJitter3Use exponential backoff with random jitter to prevent thundering herd.