Transaction::Current Property
.NET Framework (current version)
Gets or sets the ambient transaction.
Assembly: System.Transactions (in System.Transactions.dll)
public: property Transaction^ Current { static Transaction^ get(); static void set(Transaction^ value); }
Property Value
Type: System.Transactions::Transaction^A Transaction that describes the current transaction.
For more information on ambient transactions, please see the "Managing transaction flow using TransactionScopeOption" section of the Implementing an Implicit Transaction using Transaction Scope topic.
Although you can set the ambient transaction using this property, you should use the TransactionScope object to manipulate the ambient transaction whenever possible.
This property is thread static. If you change the ambient transaction using this property inside a TransactionScope an InvalidOperationException is thrown when Dispose is called, and the previous ambient transaction value is restored.
.NET Framework
Available since 2.0
Available since 2.0
Show: