//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ using Experimental.System.Messaging.Interop; using System.Diagnostics.CodeAnalysis; namespace Experimental.System.Messaging { [SuppressMessage("Microsoft.Design", "CA1008:EnumsShouldHaveZeroValue")] public enum PeekAction { Current = NativeMethods.QUEUE_ACTION_PEEK_CURRENT, Next = NativeMethods.QUEUE_ACTION_PEEK_NEXT } }