ServiceBusClientOptions.RetryOptions Property

Definition

The set of options to use for determining whether a failed service operation should be retried and, if so, the amount of time to wait between retry attempts. These options also control the amount of time allowed for the individual network operations used for interactions with the Service Bus service.

public Azure.Messaging.ServiceBus.ServiceBusRetryOptions RetryOptions { get; set; }
member this.RetryOptions : Azure.Messaging.ServiceBus.ServiceBusRetryOptions with get, set
Public Property RetryOptions As ServiceBusRetryOptions

Property Value

Remarks

The retry options are only considered for interactions with the Service Bus service. They do not apply to failures in the ProcessMessageAsync handler. Developers are responsible for error handling and retries as part of their event handler.

Applies to