Skip to main content

Documentation Index

Fetch the complete documentation index at: https://easyaf.dev/llms.txt

Use this file to discover all available pages before exploring further.

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.