//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
using Experimental.System.Messaging.Interop;
namespace Experimental.System.Messaging
{
///
///
/// [To be supplied.]
///
public enum MessageQueueTransactionType
{
///
///
/// [To be supplied.]
///
None = NativeMethods.QUEUE_TRANSACTION_NONE,
///
///
/// [To be supplied.]
///
Automatic = NativeMethods.QUEUE_TRANSACTION_MTS,
///
///
/// [To be supplied.]
///
Single = NativeMethods.QUEUE_TRANSACTION_SINGLE,
}
}