You've already forked linux-packaging-mono
22 lines
251 B
C#
22 lines
251 B
C#
//
|
|
// EnlistmentOptions.cs
|
|
//
|
|
// Author:
|
|
// Atsushi Enomoto <atsushi@ximian.com>
|
|
//
|
|
// (C)2005 Novell Inc,
|
|
//
|
|
|
|
#if NET_2_0
|
|
|
|
namespace System.Transactions
|
|
{
|
|
[Flags]
|
|
public enum EnlistmentOptions {
|
|
None,
|
|
EnlistDuringPrepareRequired,
|
|
}
|
|
}
|
|
|
|
#endif
|