MsmqBindingElementBase.ReceiveRetryCount Property

Definition

Gets or sets the maximum number of immediate retries that the queue manager should attempt if transmission of a message from the application queue to the application fails.

public:
 property int ReceiveRetryCount { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("receiveRetryCount", DefaultValue=5)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int ReceiveRetryCount { get; set; }
[<System.Configuration.ConfigurationProperty("receiveRetryCount", DefaultValue=5)>]
[<System.Configuration.IntegerValidator(MinValue=0)>]
member this.ReceiveRetryCount : int with get, set
Public Property ReceiveRetryCount As Integer

Property Value

The maximum number of times the queue manager should attempt to send a message before transferring it to the retry queue.

Attributes

Remarks

If the maximum number of delivery attempts is reached and the message is not accessed by the application, then the message is sent to a retry queue for redelivery at a later time. The amount of time before the message is transferred back to the sending queue is controlled by RetryCycleDelay. If retry cycles reach the MaxRetryCycles value, then the message is either sent to the poison-message queue, or a negative acknowledgement is sent back to the sender.

For more information, see MaxRetryCycles and RetryCycleDelay.

Applies to