QueuePropertyVariants.cs 701 B

12345678910111213141516171819
  1. //------------------------------------------------------------------------------
  2. // <copyright file="QueuePropertyVariants.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. //------------------------------------------------------------------------------
  6. namespace Experimental.System.Messaging.Interop
  7. {
  8. internal class QueuePropertyVariants : MessagePropertyVariants
  9. {
  10. private const int MaxQueuePropertyIndex = 26;
  11. public QueuePropertyVariants()
  12. : base(MaxQueuePropertyIndex, NativeMethods.QUEUE_PROPID_BASE + 1)
  13. {
  14. }
  15. }
  16. }