TransactionState.cs 397 B

1234567891011121314151617181920
  1. //
  2. // System.EnterpriseServices.CompensatingResourceManager.TransactionState.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. [Serializable]
  12. public enum TransactionState {
  13. Active = 0x0,
  14. Committed = 0x1,
  15. Aborted = 0x2,
  16. Indoubt = 0x3
  17. }
  18. }