You've already forked linux-packaging-mono
27 lines
432 B
C#
27 lines
432 B
C#
|
|
//
|
||
|
|
// SubordinateTransaction.cs
|
||
|
|
//
|
||
|
|
// Author:
|
||
|
|
// Atsushi Enomoto <atsushi@ximian.com>
|
||
|
|
//
|
||
|
|
// (C)2005 Novell Inc,
|
||
|
|
//
|
||
|
|
|
||
|
|
#if NET_2_0
|
||
|
|
using System.Runtime.Serialization;
|
||
|
|
|
||
|
|
namespace System.Transactions
|
||
|
|
{
|
||
|
|
[Serializable]
|
||
|
|
public sealed class SubordinateTransaction : Transaction
|
||
|
|
{
|
||
|
|
public SubordinateTransaction (IsolationLevel level,
|
||
|
|
ISimpleTransactionSuperior superior)
|
||
|
|
{
|
||
|
|
throw new NotImplementedException ();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|