CompensatorOptions.cs 457 B

12345678910111213141516171819202122
  1. //
  2. // System.EnterpriseServices.CompensatingResourceManager.CompensatorOptions.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 CompensatorOptions {
  14. PreparePhase = 0x1,
  15. CommitPhase = 0x2,
  16. AbortPhase = 0x4,
  17. AllPhases = 0x7,
  18. FailIfInDoubtsRemain = 0x10
  19. }
  20. }