DefaultPropertiesToSend.AdministrationQueue 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 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.