Files
linux-packaging-mono/mcs/class/System.Transactions/System.Transactions/SubordinateTransaction.cs

27 lines
432 B
C#
Raw Normal View History

//
// 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