OnFaultInjectedArguments
Arguments used by the fault chaos strategy to notify that an fault was injected.
            
                using System;
using System.Runtime.CompilerServices;
namespace Polly.Simmy.Fault
{
    [System.Runtime.CompilerServices.NullableContext(1)]
    [System.Runtime.CompilerServices.Nullable(0)]
    public readonly struct OnFaultInjectedArguments
    {
        public ResilienceContext Context { get; }
        public Exception Fault { get; }
        public OnFaultInjectedArguments(ResilienceContext context, Exception fault)
        {
            Context = context;
            Fault = fault;
        }
    }
}