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

DelegateResult<TResult>

public class DelegateResult<TResult>
The captured outcome of executing an individual Func<TResult>
using System; namespace Polly { public class DelegateResult<TResult> { public TResult Result { get; } public Exception Exception { get; } public DelegateResult(TResult result) { Result = result; } public DelegateResult(Exception exception) { Exception = exception; } } }