PeekAction.cs 732 B

1234567891011121314151617181920
  1. //------------------------------------------------------------------------------
  2. // <copyright file="MessageLookupAction.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. //------------------------------------------------------------------------------
  6. using Experimental.System.Messaging.Interop;
  7. using System.Diagnostics.CodeAnalysis;
  8. namespace Experimental.System.Messaging
  9. {
  10. [SuppressMessage("Microsoft.Design", "CA1008:EnumsShouldHaveZeroValue")]
  11. public enum PeekAction
  12. {
  13. Current = NativeMethods.QUEUE_ACTION_PEEK_CURRENT,
  14. Next = NativeMethods.QUEUE_ACTION_PEEK_NEXT
  15. }
  16. }