MsmqBindingBase.ReceiveRetryCount Property

Definition

Gets or sets the maximum number of immediate delivery attempts on a message that is read from the application queue.

public:
 property int ReceiveRetryCount { int get(); void set(int value); };
public int ReceiveRetryCount { get; set; }
member this.ReceiveRetryCount : int with get, set
Public Property ReceiveRetryCount As Integer

Property Value

The maximum number of immediate delivery attempts. The default is 5.

Remarks

If the maximum number of immediate delivery attempts for the message is made and the message is not accessed by the application, then the message is sent to a retry queue to attempt delivery at a later time. If no retry cycles are specified, then the messages 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