TransactionScopeOption Enum
Definition
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
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.