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;
}
}
}