IOutcomeArguments<TResult>
Marker interface for outcome arguments.
using System.Runtime.CompilerServices;
namespace Polly.Utils
{
[System.Runtime.CompilerServices.NullableContext(1)]
internal interface IOutcomeArguments<[System.Runtime.CompilerServices.Nullable(2)] TResult>
{
ResilienceContext Context { get; }
[System.Runtime.CompilerServices.Nullable(new byte[] {
0,
1
})]
Outcome<TResult> Outcome {
[return: System.Runtime.CompilerServices.Nullable(new byte[] {
0,
1
})]
get;
}
}
}