MsmqBindingBase.MaxRetryCycles 属性

定义

获取或设置尝试向接收应用程序传递消息的最大重试周期数。

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

属性值

Int32

尝试向应用程序传递消息的最大重试周期数。 默认值为 2。

注解

单个重试周期按指定次数尝试向应用程序传递消息。 尝试次数由 ReceiveRetryCount 属性设置。 如果在连续重试了指定次数后,应用程序仍未能访问消息,则将消息发送到重试队列。 后续的重试周期包括在经过由 RetryCycleDelay 属性指定的延迟后,从重试队列返回应用程序队列以再次尝试传递给接收应用程序的消息。 MaxRetryCycles 属性指定应用程序用于尝试传递消息的重试周期数。

适用于