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

OutcomeStrategyOptions<TResult>

Represents the options for the Outcome chaos strategy.
using System; using System.ComponentModel.DataAnnotations; using System.Runtime.CompilerServices; using System.Threading.Tasks; namespace Polly.Simmy.Outcomes { internal class OutcomeStrategyOptions<[Nullable(2)] TResult> : MonkeyStrategyOptions { [Nullable(new byte[] { 2, 0, 1 })] [field: Nullable(new byte[] { 2, 0, 1 })] public Func<OnOutcomeInjectedArguments<TResult>, ValueTask> OnOutcomeInjected { [return: Nullable(new byte[] { 2, 0, 1 })] get; [param: Nullable(new byte[] { 2, 0, 1 })] set; } [Nullable(new byte[] { 1, 0, 0, 1 })] [Required] [field: Nullable(new byte[] { 1, 0, 0, 1 })] public Func<OutcomeGeneratorArguments, ValueTask<Outcome<TResult>?>> OutcomeGenerator { [return: Nullable(new byte[] { 1, 0, 0, 1 })] get; [param: Nullable(new byte[] { 1, 0, 0, 1 })] set; } } }