<PackageReference Include="Polly" Version="7.1.1" />

ResultPredicate<TResult>

public sealed delegate ResultPredicate<TResult> : MulticastDelegate
A predicate that can be run against a passed result value of type TResult. Predicates are used to define whether policies handle the given result.
namespace Polly { public delegate bool ResultPredicate<in TResult> (TResult result); }