1234567891011121314151617181920 |
- //------------------------------------------------------------------------------
- // <copyright file="MessageLookupAction.cs" company="Microsoft">
- // Copyright (c) Microsoft Corporation. All rights reserved.
- // </copyright>
- //------------------------------------------------------------------------------
- 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
- }
- }
|