<PackageReference Include="Grpc.Net.Client" Version="2.76.0" />

Grpc.Net.Client.Configuration.HedgingPolicy

public sealed class HedgingPolicy : ConfigObject
The hedging policy for outgoing calls. Hedged calls may execute more than once on the server, so only idempotent methods should specify a hedging policy.
namespace Grpc.Net.Client.Configuration { public sealed class HedgingPolicy : ConfigObject { public int? MaxAttempts { get; set; } public TimeSpan? HedgingDelay { get; set; } public IList<StatusCode> NonFatalStatusCodes { get; } public HedgingPolicy(); } }