OnTimeoutArguments
Arguments used by the timeout strategy to notify that a timeout occurred.
using System;
using System.Runtime.CompilerServices;
namespace Polly.Timeout
{
[System.Runtime.CompilerServices.NullableContext(1)]
[System.Runtime.CompilerServices.Nullable(0)]
public readonly struct OnTimeoutArguments
{
public ResilienceContext Context { get; }
public TimeSpan Timeout { get; }
public OnTimeoutArguments(ResilienceContext context, TimeSpan timeout)
{
Context = context;
Timeout = timeout;
}
}
}