| 1234567891011121314151617181920212223242526272829303132 |
- //
- // System.Web.Util.Transactions.cs
- //
- // Author:
- // Andreas Nahr ([email protected])
- //
- using System;
- using System.EnterpriseServices;
- namespace System.Web.Util
- {
- public class Transactions
- {
- public Transactions ()
- {
- }
- public static void InvokeTransacted (TransactedCallback callback, TransactionOption mode)
- {
- bool abortedTransaction = false;
- InvokeTransacted (callback, mode, ref abortedTransaction);
- }
- public static void InvokeTransacted (TransactedCallback callback,
- TransactionOption mode,
- ref bool transactionAborted)
- {
- throw new PlatformNotSupportedException ("Not supported on mono");
- }
- }
- }
|