merge -r 61110:61111
[mono.git] / mcs / class / System.Transactions / System.Transactions / TransactionInterop.cs
1 //
2 // TransactionInterop.cs
3 //
4 // Author:
5 //      Atsushi Enomoto  <atsushi@ximian.com>
6 //
7 // (C)2005 Novell Inc,
8 //
9
10 #if NET_2_0
11
12 // OK, everyone knows that am not interested in DTC support ;-)
13
14 namespace System.Transactions
15 {
16         [MonoTODO]
17         public static class TransactionInterop
18         {
19                 [MonoTODO]
20                 public static IDtcTransaction GetDtcTransaction (Transaction transaction)
21                 {
22                         throw new NotImplementedException ();
23                 }
24
25                 [MonoTODO]
26                 public static byte [] GetExportCookie (Transaction transaction,
27                         byte [] exportCookie)
28                 {
29                         throw new NotImplementedException ();
30                 }
31
32                 [MonoTODO]
33                 public static Transaction GetTransactionFromDtcTransaction (
34                         IDtcTransaction dtc)
35                 {
36                         throw new NotImplementedException ();
37                 }
38
39                 [MonoTODO]
40                 public static Transaction GetTransactionFromExportCookie (
41                         byte [] exportCookie)
42                 {
43                         throw new NotImplementedException ();
44                 }
45
46                 [MonoTODO]
47                 public static Transaction GetTransactionFromTransmitterPropagationToken (byte [] token)
48                 {
49                         throw new NotImplementedException ();
50                 }
51
52                 [MonoTODO]
53                 public static byte [] GetTransmitterPropagationToken (
54                         Transaction transaction)
55                 {
56                         throw new NotImplementedException ();
57                 }
58
59                 [MonoTODO]
60                 public static byte [] GetWhereabouts ()
61                 {
62                         throw new NotImplementedException ();
63                 }
64         }
65 }
66
67 #endif