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

ShouldRetryArguments

Represents the arguments used by ShouldRetry for determining whether a retry should be performed.
public int Attempt { get; set; }

The zero-based attempt number. The first attempt is 0, the second attempt is 1, and so on.

public ShouldRetryArguments(int Attempt)

Represents the arguments used by ShouldRetry for determining whether a retry should be performed.

public static bool op_Equality(ShouldRetryArguments left, ShouldRetryArguments right)

public void Deconstruct(out int Attempt)

public bool Equals(ShouldRetryArguments other)