<PackageReference Include="Polly.Core" Version="8.7.0" />

Polly.Telemetry.ExecutionAttemptArguments

Arguments that encapsulate the execution attempt for retries or hedging.
namespace Polly.Telemetry { public readonly struct ExecutionAttemptArguments { public int AttemptNumber { get; } public TimeSpan Duration { get; } public bool Handled { get; } public ExecutionAttemptArguments(int attemptNumber, TimeSpan duration, bool handled); } }