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