Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

The transaction level of a queue indicates whether the queue accepts transactional or non-transactional messages. It is set when the queue is created.

You must call MSMQQueueInfo.Refreshbefore attempting to retrieve this property.

Note:
If your application does not have MQSEC_GET_QUEUE_PROPERTIES access rights for the queue, an MQ_ERROR_ACCESS_DENIED error is returned to MSMQQueueInfo.Refresh.
To retrieve MSMQQueueInfo.IsTransactional
  1. Declare the MSMQQueueInfovariable for the queue.

  2. Obtain an MSMQQueueInfoobject.

  3. Call MSMQQueueInfo.Refreshto update the local properties of the queue object.

    MSMQQueueInfo.IsTransactionalis a read-only property set when the queue is created.

  4. Use MSMQQueueInfo.IsTransactionalas needed.

See Also