LogRecordFlags.cs 560 B

123456789101112131415161718192021222324
  1. //
  2. // System.EnterpriseServices.CompensatingResourceManager.LogRecordFlags.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System;
  10. namespace System.EnterpriseServices.CompensatingResourceManager {
  11. [Flags]
  12. [Serializable]
  13. public enum LogRecordFlags {
  14. ForgetTarget = 0x1,
  15. WrittenDuringPrepare = 0x2,
  16. WrittenDuringCommit = 0x4,
  17. WrittenDuringAbort = 0x8,
  18. WrittenDurringRecovery = 0x10, // Typo present in .NET
  19. WrittenDuringReplay = 0x20,
  20. ReplayInProgress = 0x40
  21. }
  22. }