//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
using System.Diagnostics.CodeAnalysis;
namespace Experimental.System.Messaging
{
///
///
/// A message can be a normal MSMQ message, a positive or negative
/// (arrival and read) acknowledgment message, or a report message.
///
[SuppressMessage("Microsoft.Design", "CA1008:EnumsShouldHaveZeroValue")]
public enum MessageType
{
///
///
/// [To be supplied.]
///
Acknowledgment = 1,
///
///
/// [To be supplied.]
///
Normal = 2,
///
///
/// [To be supplied.]
///
Report = 3,
}
}