TransactionScope Constructor (Transaction^, TransactionScopeAsyncFlowOption)
[Supported in the .NET Framework 4.5.1 and later versions]
Initializes a new instance of the TransactionScope class and sets the specified transaction as the ambient transaction, so that transactional work done inside the scope uses this transaction.
Assembly: System.Transactions (in System.Transactions.dll)
public:
TransactionScope(
Transaction^ transactionToUse,
TransactionScopeAsyncFlowOption asyncFlowOption
)
Parameters
- transactionToUse
-
Type:
System.Transactions::Transaction^
The transaction to be set as the ambient transaction, so that transactional work done inside the scope uses this transaction.
- asyncFlowOption
-
Type:
System.Transactions::TransactionScopeAsyncFlowOption
An instance of the TransactionScopeAsyncFlowOption enumeration that describes whether the ambient transaction associated with the transaction scope will flow across thread continuations when using Task or async/await .NET async programming patterns.
.NET Framework
Available since 4.5.1
Available since 4.5.1
Show: