MsmqBindingElementBase.ExactlyOnce 属性

定义

获取或设置一个值,该值指定随此绑定发送的消息是否具有一次性保证。

public:
 property bool ExactlyOnce { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("exactlyOnce", DefaultValue=true)]
public bool ExactlyOnce { get; set; }
[<System.Configuration.ConfigurationProperty("exactlyOnce", DefaultValue=true)>]
member this.ExactlyOnce : bool with get, set
Public Property ExactlyOnce As Boolean

属性值

如果随此绑定发送的消息具有一次性保证,则为 true;否则为 false

属性

注解

ExactlyOnce如果设置为 true,则指示消息队列 (也称为 MSMQ) 可确保已发送的消息一次且仅一次传递到接收消息队列。 如果传递失败,则会根据 DeadLetterQueue 属性设置将消息发送到死信队列。 若要将 ExactlyOnce 设置为 true,则要求队列为事务性队列。

适用于