Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

TransactionScopeOption Enum

Definition

Namespace:
System.Transactions
Assemblies:
netstandard.dll, System.Transactions.Local.dll
Assembly:
System.Transactions.Local.dll
Assembly:
System.Transactions.dll
Assembly:
netstandard.dll
Source:
TransactionScope.cs
Source:
TransactionScope.cs
Source:
TransactionsEtwProvider.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Provides additional options for creating a transaction scope.

public enum class TransactionScopeOption
public enum TransactionScopeOption
type TransactionScopeOption = 
Public Enum TransactionScopeOption
Inheritance
TransactionScopeOption

Fields

Name Value Description
Required 0

A transaction is required by the scope. It uses an ambient transaction if one already exists. Otherwise, it creates a new transaction before entering the scope. This is the default value.

RequiresNew 1

A new transaction is always created for the scope.

Suppress 2

The ambient transaction context is suppressed when creating the scope. All operations within the scope are done without an ambient transaction context.

Remarks

The TransactionScopeOption enumeration is passed to the various constructors of the TransactionScope class to define the transactional behavior of the scope. For more information on how this enumeration is used, see the "Managing Transaction Flow using TransactionScopeOption" section in Implementing An Implicit Transaction Using Transaction Scope.

Applies to


Feedback

Was this page helpful?