Transactions.cs 667 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // System.Web.Util.Transactions.cs
  3. //
  4. // Author:
  5. // Andreas Nahr ([email protected])
  6. //
  7. using System;
  8. using System.EnterpriseServices;
  9. namespace System.Web.Util
  10. {
  11. public class Transactions
  12. {
  13. public Transactions ()
  14. {
  15. }
  16. public static void InvokeTransacted (TransactedCallback callback, TransactionOption mode)
  17. {
  18. bool abortedTransaction = false;
  19. InvokeTransacted (callback, mode, ref abortedTransaction);
  20. }
  21. public static void InvokeTransacted (TransactedCallback callback,
  22. TransactionOption mode,
  23. ref bool transactionAborted)
  24. {
  25. throw new PlatformNotSupportedException ("Not supported on mono");
  26. }
  27. }
  28. }