diff --git a/sdk/servicebus/Azure.Messaging.ServiceBus/src/Primitives/ServiceBusRetryOptions.cs b/sdk/servicebus/Azure.Messaging.ServiceBus/src/Primitives/ServiceBusRetryOptions.cs index 75d32aa2e0c4a..65a4bbd205e6c 100644 --- a/sdk/servicebus/Azure.Messaging.ServiceBus/src/Primitives/ServiceBusRetryOptions.cs +++ b/sdk/servicebus/Azure.Messaging.ServiceBus/src/Primitives/ServiceBusRetryOptions.cs @@ -36,6 +36,9 @@ public class ServiceBusRetryOptions /// to have failed. /// /// + /// + /// The default retry limit is 3. + /// public int MaxRetries { get => _maxRetries; @@ -52,6 +55,9 @@ public int MaxRetries /// on which to base calculations for a backoff-based approach. /// /// + /// + /// The default delay is 0.8 seconds. + /// public TimeSpan Delay { get => _delay; @@ -67,6 +73,9 @@ public TimeSpan Delay /// The maximum permissible delay between retry attempts. /// /// + /// + /// The default maximum delay is 60 seconds. + /// public TimeSpan MaxDelay { get => _maxDelay; @@ -83,6 +92,9 @@ public TimeSpan MaxDelay /// attempt or a retry. /// /// + /// + /// The default timeout is 60 seconds. + /// public TimeSpan TryTimeout { get => _tryTimeout;