MsmqElementBase.MaxRetryCycles 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置尝试向接收应用程序传递消息的最大重试周期数。
public:
property int MaxRetryCycles { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("maxRetryCycles", DefaultValue=2)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int MaxRetryCycles { get; set; }
[<System.Configuration.ConfigurationProperty("maxRetryCycles", DefaultValue=2)>]
[<System.Configuration.IntegerValidator(MinValue=0)>]
member this.MaxRetryCycles : int with get, set
Public Property MaxRetryCycles As Integer
属性值
一个整数,指示尝试向接收应用程序传递消息的最大重试周期数。 默认值为 2。
- 属性
注解
单个重试周期按指定次数尝试向应用程序传递消息。 尝试次数由 ReceiveRetryCount 属性设置。 如果在耗尽传递尝试次数后,应用程序仍未能处理消息,则将消息发送到重试队列。 后续的重试周期包括在经过由 RetryCycleDelay 属性指定的延迟后,从重试队列返回应用程序队列以再次尝试传递给接收应用程序的消息。 MaxRetryCycles 属性指定应用程序用于尝试传递消息的重试周期数。