MessageLookupAction.cs 725 B

12345678910111213141516171819202122232425262728
  1. //------------------------------------------------------------------------------
  2. // <copyright file="MessageLookupAction.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. //------------------------------------------------------------------------------
  6. using System.Diagnostics.CodeAnalysis;
  7. namespace Experimental.System.Messaging
  8. {
  9. [SuppressMessage("Microsoft.Design", "CA1027:MarkEnumsWithFlags")]
  10. public enum MessageLookupAction
  11. {
  12. Current = 0x0,
  13. Next = 0x1,
  14. Previous = 0x2,
  15. First = 0x4,
  16. Last = 0x8,
  17. //ReceiveAllowPeek - TBD
  18. }
  19. }