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

OnHedgingArguments<TResult>

public struct OnHedgingArguments<TResult>
Represents arguments used by the on-hedging event.
using System.Runtime.CompilerServices; namespace Polly.Hedging { [System.Runtime.CompilerServices.NullableContext(1)] [System.Runtime.CompilerServices.Nullable(0)] public readonly struct OnHedgingArguments<[System.Runtime.CompilerServices.Nullable(2)] TResult> { public ResilienceContext PrimaryContext { get; } public ResilienceContext ActionContext { get; } public int AttemptNumber { get; } public OnHedgingArguments(ResilienceContext primaryContext, ResilienceContext actionContext, int attemptNumber) { PrimaryContext = primaryContext; ActionContext = actionContext; AttemptNumber = attemptNumber; } } }