MsmqElementBase.MaxRetryCycles 属性

定义

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

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 属性指定应用程序用于尝试传递消息的重试周期数。

适用于