DefaultPropertiesToSend.AdministrationQueue Property

Definition

Gets or sets the queue that receives acknowledgement messages generated by Message Queuing.

public:
 property System::Messaging::MessageQueue ^ AdministrationQueue { System::Messaging::MessageQueue ^ get(); void set(System::Messaging::MessageQueue ^ value); };
[System.Messaging.MessagingDescription("MsgAdministrationQueue")]
public System.Messaging.MessageQueue AdministrationQueue { get; set; }
[<System.Messaging.MessagingDescription("MsgAdministrationQueue")>]
member this.AdministrationQueue : System.Messaging.MessageQueue with get, set
Public Property AdministrationQueue As MessageQueue

Property Value

The MessageQueue that specifies the administration queue used for system-generated acknowledgment messages. The default is null.

Attributes

Remarks

The queue specified in the AdministrationQueue property can be any non-transactional queue. The acknowledgment messages sent to the administration queue can indicate whether or not the original message reached its destination queue, and whether or not it was removed from the queue.

When the AcknowledgeType property has any value other than None, the sending application must specify the queue to be used as the administration queue.

Applies to

See also