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

RetryDelayArguments

Represents the arguments used by RetryDelayGenerator for generating the next retry delay.
public int Attempt { get; set; }

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

public TimeSpan DelayHint { get; set; }

The delay suggested by the retry strategy.

public RetryDelayArguments(int Attempt, TimeSpan DelayHint)

Represents the arguments used by RetryDelayGenerator for generating the next retry delay.

public static bool op_Equality(RetryDelayArguments left, RetryDelayArguments right)

public static bool op_Inequality(RetryDelayArguments left, RetryDelayArguments right)

public void Deconstruct(out int Attempt, out TimeSpan DelayHint)

public bool Equals(RetryDelayArguments other)