Merge pull request #4621 from alexanderkyte/strdup_env
[mono.git] / mcs / class / System.Transactions / System.Transactions / SubordinateTransaction.cs
1 //
2 // SubordinateTransaction.cs
3 //
4 // Author:
5 //      Atsushi Enomoto  <atsushi@ximian.com>
6 //
7 // (C)2005 Novell Inc,
8 //
9
10 using System.Runtime.Serialization;
11
12 namespace System.Transactions
13 {
14         [Serializable]
15         public sealed class SubordinateTransaction : Transaction
16         {
17                 public SubordinateTransaction (IsolationLevel isoLevel,
18                         ISimpleTransactionSuperior superior)
19                 {
20                         throw new NotImplementedException ();
21                 }
22         }
23 }
24