You've already forked linux-packaging-mono
20 lines
233 B
C#
20 lines
233 B
C#
//
|
|
// TransactionScopeOption.cs
|
|
//
|
|
// Author:
|
|
// Atsushi Enomoto <atsushi@ximian.com>
|
|
//
|
|
// (C)2005 Novell Inc,
|
|
//
|
|
|
|
|
|
namespace System.Transactions
|
|
{
|
|
public enum TransactionScopeOption {
|
|
Required,
|
|
RequiresNew,
|
|
Suppress,
|
|
}
|
|
}
|
|
|