MsmqElementBase.CustomDeadLetterQueue Property

Definition

Gets or sets a URI that contains the location of the per-application dead-letter queue, where messages that have expired or that have failed transfer or delivery are placed.

public:
 property Uri ^ CustomDeadLetterQueue { Uri ^ get(); void set(Uri ^ value); };
[System.Configuration.ConfigurationProperty("customDeadLetterQueue", DefaultValue=null)]
public Uri CustomDeadLetterQueue { get; set; }
[<System.Configuration.ConfigurationProperty("customDeadLetterQueue", DefaultValue=null)>]
member this.CustomDeadLetterQueue : Uri with get, set
Public Property CustomDeadLetterQueue As Uri

Property Value

Uri

The Uri that contains the location of the per-application dead-letter queue. The default value is null.

Attributes

Remarks

The dead-letter queue is a queue on the queue manager of the sending application for expired messages that have failed to be delivered.

The URI that is specified by CustomDeadLetterQueue must use the Net.msmq scheme.

If DeadLetterQueue is set to None or System, then CustomDeadLetterQueue must be set to null. If CustomDeadLetterQueue is not null, then DeadLetterQueue must be set to Custom.

Applies to