DefaultPropertiesToSend.UseDeadLetterQueue Property

Definition

Gets or sets a value that indicates whether a copy of the message that could not be delivered should be sent to a dead-letter queue.

public:
 property bool UseDeadLetterQueue { bool get(); void set(bool value); };
[System.Messaging.MessagingDescription("MsgUseDeadLetterQueue")]
public bool UseDeadLetterQueue { get; set; }
[<System.Messaging.MessagingDescription("MsgUseDeadLetterQueue")>]
member this.UseDeadLetterQueue : bool with get, set
Public Property UseDeadLetterQueue As Boolean

Property Value

true if message delivery failure should result in a copy of the message being sent to a dead-letter queue; otherwise, false. The default is false.

Attributes

Remarks

UseJournalQueue and UseDeadLetterQueue specify how Message Queuing will track a message. If UseDeadLetterQueue is true, then in case of delivery failure (for non-transactional messages), the message is sent to the non-transactional dead-letter queue on the computer that could not deliver the message (for example, if a message timer expires).

In the case of delivery failure for transactional messages, the message is sent to the transactional dead-letter queue on the source computer in all negative and in-doubt cases.

When you store messages in a dead-letter queue, empty the queue periodically to remove messages that are no longer needed. Messages stored in dead-letter queues count against the size quota for the computer where the queue resides. The computer quota is set by the administrator and refers to the total size allocated for storing messages on a computer, not just in a single queue.

You do not create a journal or dead-letter queue. These are both system queues that are generated by Message Queuing.

Applies to

See also