MsmqBindingElementBase.Durable Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that specifies whether messages sent with this binding are durable or volatile.
public:
property bool Durable { bool get(); void set(bool value); };
public bool Durable { get; set; }
member this.Durable : bool with get, set
Public Property Durable As Boolean
Property Value
true
if the messages processed by this binding are durable; false
if they are volatile. The default is true
.
Remarks
If this property is set to true
, messages are durable; otherwise, messages are volatile. Durable messages are not lost if the queue manager crashes. The default value for this property is true
. When exactly once assurances are required (ExactlyOnce is set to true
), this property must be set to true
.