Configuration options for retry middleware applied to process invocation.
public sealed class RetryOptions
Register an instance of this type in the dependency injection container to customise retry behaviour. When no instance is registered, Default is used.
kind:method, kind:property, kind:ctor. Press Esc to clear.BaseDelayGets or sets the base delay applied between retry attempts.DefaultGets the default options instance (MaxAttempts = 3, BaseDelay = 100 ms, Strategy = Exponential).MaxAttemptsGets or sets the maximum number of invocation attempts, including the initial attempt.StrategyGets or sets the backoff strategy used between retry attempts.