//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace Experimental.System.Messaging
{
///
///
/// [To be supplied.]
///
public enum MessageQueueTransactionStatus
{
///
///
/// [To be supplied.]
///
Aborted = 0,
///
///
/// [To be supplied.]
///
Committed = 1,
///
///
/// [To be supplied.]
///
Initialized = 2,
///
///
/// [To be supplied.]
///
Pending = 3,
}
}