Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Transactions.cs « System.Web.Util « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c65717fe36ade4bfba6da1335667e0b48ff92f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
// System.Web.Util.Transactions.cs
//
// Author:
//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
//

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");
		}
	}
}