Merge pull request #2566 from lambdageek/monoerror-mono_module_get_object
[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
11 // OK, everyone knows that am not interested in DTC support ;-)
12
13 namespace System.Transactions
14 {
15         [MonoTODO]
16         public static class TransactionInterop
17         {
18                 [MonoTODO]
19                 public static IDtcTransaction GetDtcTransaction (Transaction transaction)
20                 {
21                         throw new NotImplementedException ();
22                 }
23
24                 [MonoTODO]
25                 public static byte [] GetExportCookie (Transaction transaction,
26                         byte [] exportCookie)
27                 {
28                         throw new NotImplementedException ();
29                 }
30
31                 [MonoTODO]
32                 public static Transaction GetTransactionFromDtcTransaction (
33                         IDtcTransaction dtc)
34                 {
35                         throw new NotImplementedException ();
36                 }
37
38                 [MonoTODO]
39                 public static Transaction GetTransactionFromExportCookie (
40                         byte [] exportCookie)
41                 {
42                         throw new NotImplementedException ();
43                 }
44
45                 [MonoTODO]
46                 public static Transaction GetTransactionFromTransmitterPropagationToken (byte [] token)
47                 {
48                         throw new NotImplementedException ();
49                 }
50
51                 [MonoTODO]
52                 public static byte [] GetTransmitterPropagationToken (
53                         Transaction transaction)
54                 {
55                         throw new NotImplementedException ();
56                 }
57
58                 [MonoTODO]
59                 public static byte [] GetWhereabouts ()
60                 {
61                         throw new NotImplementedException ();
62                 }
63         }
64 }
65