<PackageReference Include="Polly.Core" Version="8.0.0-alpha.7" />

RetryPredicateArguments

public struct RetryPredicateArguments
Represents the arguments used by ShouldHandle for determining whether a retry should be performed.
namespace Polly.Retry { public readonly struct RetryPredicateArguments { public int Attempt { get; } public RetryPredicateArguments(int attempt) { Attempt = attempt; } } }