CommittableTransaction Class
Describes a committable transaction.
Assembly: System.Transactions (in System.Transactions.dll)
The CommittableTransaction type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | CommittableTransaction() | Initializes a new instance of the CommittableTransaction class. |
![]() | CommittableTransaction(TimeSpan) | Initializes a new instance of the CommittableTransaction class with the specified timeout value. |
![]() | CommittableTransaction(TransactionOptions) | Initializes a new instance of the CommittableTransaction class with the specified transaction options. |
| Name | Description | |
|---|---|---|
![]() | IsolationLevel | Gets the isolation level of the transaction. (Inherited from Transaction.) |
![]() | TransactionInformation | Retrieves additional information about a transaction. (Inherited from Transaction.) |
| Name | Description | |
|---|---|---|
![]() | BeginCommit | Begins an attempt to commit the transaction asynchronously. |
![]() | Clone | Creates a clone of the transaction. (Inherited from Transaction.) |
![]() | Commit | Attempts to commit the transaction. |
![]() | DependentClone | Creates a dependent clone of the transaction. (Inherited from Transaction.) |
![]() | Dispose | Releases the resources that are held by the object. (Inherited from Transaction.) |
![]() | EndCommit | Ends an attempt to commit the transaction asynchronously. |
![]() | EnlistDurable(Guid, IEnlistmentNotification, EnlistmentOptions) | Enlists a durable resource manager that supports two phase commit to participate in a transaction. (Inherited from Transaction.) |
![]() | EnlistDurable(Guid, ISinglePhaseNotification, EnlistmentOptions) | Enlists a durable resource manager that supports single phase commit optimization to participate in a transaction. (Inherited from Transaction.) |
![]() | EnlistPromotableSinglePhase | Enlists a resource manager that has an internal transaction using a promotable single phase enlistment (PSPE). (Inherited from Transaction.) |
![]() | EnlistVolatile(IEnlistmentNotification, EnlistmentOptions) | Enlists a volatile resource manager that supports two phase commit to participate in a transaction. (Inherited from Transaction.) |
![]() | EnlistVolatile(ISinglePhaseNotification, EnlistmentOptions) | Enlists a volatile resource manager that supports single phase commit optimization to participate in a transaction. (Inherited from Transaction.) |
![]() | Equals | Determines whether this transaction and the specified object are equal. (Inherited from Transaction.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Returns the hash code for this instance. (Inherited from Transaction.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | Rollback() | Rolls back (aborts) the transaction. (Inherited from Transaction.) |
![]() | Rollback(Exception) | Rolls back (aborts) the transaction. (Inherited from Transaction.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() | TransactionCompleted | Indicates that the transaction is completed. (Inherited from Transaction.) |
| Name | Description | |
|---|---|---|
![]() ![]() | IAsyncResult::AsyncState | Gets the object provided as the last parameter of the BeginCommit method call. |
![]() ![]() | IAsyncResult::AsyncWaitHandle | Gets a WaitHandle that is used to wait for an asynchronous operation to complete. |
![]() ![]() | IAsyncResult::CompletedSynchronously | Gets an indication of whether the asynchronous commit operation completed synchronously. |
![]() ![]() | IAsyncResult::IsCompleted | Gets an indication whether the asynchronous commit operation has completed. |
![]() ![]() | ISerializable::GetObjectData | Gets a SerializationInfo with the data required to serialize this transaction. (Inherited from Transaction.) |
The CommittableTransaction class provides an explicit way for applications to use a transaction, as opposed to using the TransactionScope class implicitly. Unlike the TransactionScope class, the application writer needs to specifically call the Commit and Rollback methods in order to commit or abort the transaction. However, only the creator of a transaction can commit the transaction. Therefore, copies of a committable transaction, obtained through the Clone method are not committable.
Note |
|---|
It is recommended that you create implicit transactions using the TransactionScope class, so that the ambient transaction context is automatically managed for you. You should also use the TransactionScope and DependentTransaction class for applications that require the use of the same transaction across multiple function calls or multiple thread calls. For more information on this model, see the Implementing An Implicit Transaction Using Transaction Scope topic. |
Creating a CommittableTransaction does not automatically set the ambient transaction, which is the transaction your code executes in. You can get or set the ambient transaction by calling the static Current property of the global Transaction object. For more information on ambient transactions, see the " Managing Transaction Flow using TransactionScopeOption" section of the Implementing An Implicit Transaction Using Transaction Scope topic. If the ambient transaction is not set, any operation on a resource manager is not part of that transaction. You need to explicitly set and reset the ambient transaction, to ensure that resource managers operate under the right transaction context.
Until a CommittableTransaction has been committed, all the resources involved with the transaction are still locked.
A CommittableTransaction object cannot be reused. Once it has been committed or rolled back, it cannot be used again in a transaction or set as the current ambient transaction context.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

