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