//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ using System.Diagnostics.CodeAnalysis; namespace Experimental.System.Messaging { [SuppressMessage("Microsoft.Design", "CA1027:MarkEnumsWithFlags")] public enum MessageLookupAction { Current = 0x0, Next = 0x1, Previous = 0x2, First = 0x4, Last = 0x8, //ReceiveAllowPeek - TBD } }