Polly.Timeout.OnTimeoutArguments
Arguments used by the timeout strategy to notify that a timeout occurred.
namespace Polly.Timeout
{
public readonly struct OnTimeoutArguments
{
public ResilienceContext Context { get; }
public TimeSpan Timeout { get; }
public OnTimeoutArguments(ResilienceContext context, TimeSpan timeout);
}
}