Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
System.Transactions Namespace

The System.Transactions namespace contains classes that allow you to write your own transactional application and resource manager. Specifically, you can create and participate in a transaction (local or distributed) with one or multiple participants.

Important noteImportant Note:

You can only create applications using this namespace under the Windows 2000, Windows XP and Windows 2003 platforms. Creating a transaction under the Windows 98 and Windows ME platforms throws a PlatformNotSupportedException .

The System.Transactions infrastructure makes transactional programming simple and efficient throughout the platform by supporting transactions initiated in SQL Server, ADO.NET, MSMQ, and the Microsoft Distributed Transaction Coordinator (MSDTC). It provides both an explicit programming model based on the Transaction class, as well as an implicit programming model using the TransactionScope class, in which transactions are automatically managed by the infrastructure. It is highly recommended that you use the easier implicit model for development. To get started, please see the Implementing an Implicit Transaction using Transaction Scope topic. For more information on writing a transactional application, see Writing A Transactional Application.

System.Transactions also provides types for you to implement a resource manager. The transaction manager native to the System.Transactions infrastructure allows volatile resources or a single durable resource enlistment to commit or roll back efficiently. For more information on implementing a resource manager, see Implementing a Resource Manager.

The transaction manager also transparently escalates local transactions to distributed transactions by coordinating through a disk-based transaction manager like the DTC, when an additional durable resource manager enlists itself with a transaction. There are two key ways that the System.Transactions infrastructure provides enhanced performance.

  • Dynamic Escalation, which means that the System.Transactions infrastructure only engages the MSDTC when it is actually required for a transaction. This area is covered in depth in the Transaction Management Escalation topic.

  • Promotable Enlistments, which allows a resource, such as a database, to take ownership of the transaction if it is the only entity participating in the transaction. Later, if needed, the System.Transactions infrastructure can still escalate the management of the transaction to MSDTC. This further reduces the chance of using the MSDTC. This area is covered in depth in the Optimization using Single Phase Commit and Promotable Single Phase Notification topic.

System.Transactions defines three levels of trust that restrict access on the types of resources it exposes. Specifically, the System.Transactions assembly can be called by partially trusted code as it has been marked with the AllowPartiallyTrustedCallers attribute (APTCA). This attribute essentially removes the implicit LinkDemand for the FullTrust permission set that is otherwise automatically placed on each publicly accessible method in each type. However, some types and members still require stronger permissions.

The following is a list of types and members that are not callable by partially trusted code because they are decorated with the following declarative security attribute:

PermissionSetAttribute(SecurityAction.LinkDemand, Name := "FullTrust")

System.Transactions.Transaction.EnlistDurable

System.Transactions.Transaction.EnlistPromotableSinglePhase

System.Transactions.TransactionInterop

System.Transactions.TransactionManager.DistributedTransactionStarted

System.Transactions.TransactionManager.HostCurrentTransactionCallback

System.Transactions.TransactionManager.Reenlist

System.Transactions.TransactionManager.RecoveryComplete

System.Transactions.TransactionScope.TransactionScope (System.Transactions.Transaction,System.TimeSpan,System.Transactions.EnterpriseServicesInteropOption)

M:System.Transactions.TransactionScope.TransactionScope(System.Transactions.TransactionScopeOption,System.Transactions.TransactionOptions,System.Transactions.EnterpriseServicesInteropOption)

For more information on the various trust levels, see Security Trust Levels in Accessing Resources.

Core Development Technologies\Data Access\Transaction Processing\

For more information on how to use the System.Transactions namespace, you can consult the conceptual documentation Transaction Processing, located under the "Core Development Technologies\Data Access\Transaction Processing\" section in the documentation. Specifically, you can find more information in the following topics.

Features Provided by System.Transactions

Writing A Transactional Application

Implementing a Resource Manager

  ClassDescription
Public classCommittableTransaction Describes a committable transaction.
Public classDependentTransaction Describes a clone of a transaction providing guarantee that the transaction cannot be committed until the application comes to rest regarding work on the transaction. This class cannot be inherited.
Public classDistributedTransactionPermission The permission that is demanded by System.Transactions when management of a transaction is escalated to MSDTC. This class cannot be inherited.
Public classDistributedTransactionPermissionAttribute Allows security actions for DistributedTransactionPermission to be applied to code using declarative security. This class cannot be inherited.
Public classEnlistment Facilitates communication between an enlisted transaction participant and the transaction manager during the final phase of the transaction.
Public classPreparingEnlistment Facilitates communication between an enlisted transaction participant and the transaction manager during the Prepare phase of the transaction.
Public classSinglePhaseEnlistment Provides a set of callbacks that facilitate communication between a participant enlisted for Single Phase Commit and the transaction manager when the SinglePhaseCommit notification is received.
Public classSubordinateTransaction Represents a non-rooted transaction that can be delegated. This class cannot be inherited.
Public classTransaction Represents a transaction.
Public classTransactionAbortedException The exception that is thrown when an operation is attempted on a transaction that has already been rolled back, or an attempt is made to commit the transaction and the transaction aborts.
Public classTransactionEventArgs Provides data for the following transaction events: DistributedTransactionStarted, TransactionCompleted.
Public classTransactionException The exception that is thrown when you attempt to do work on a transaction that cannot accept new work.
Public classTransactionInDoubtException The exception that is thrown when an operation is attempted on a transaction that is in doubt, or an attempt is made to commit the transaction and the transaction becomes InDoubt.
Public classTransactionInformation Provides additional information regarding a transaction.
Public classTransactionInterop Facilitates interaction between System.Transactions and components that were previously written to interact with MSDTC, COM+, or System.EnterpriseServices. This class cannot be inherited.
Public classTransactionManager Contains methods used for transaction management. This class cannot be inherited.
Public classTransactionManagerCommunicationException The exception that is thrown when a resource manager cannot communicate with the transaction manager.
Public classTransactionPromotionException The exception that is thrown when a promotion fails.
Public classTransactionScope Makes a code block transactional. This class cannot be inherited.
  StructureDescription
Public structureTransactionOptions Contains additional information that specifies transaction behaviors.
  InterfaceDescription
Public interfaceIDtcTransaction Describes a DTC transaction.
Public interfaceIEnlistmentNotification Describes an interface that a resource manager should implement to provide two phase commit notification callbacks for the transaction manager upon enlisting for participation.
Public interfaceIPromotableSinglePhaseNotification Describes an object that acts as a commit delegate for a non-distributed transaction internal to a resource manager.
Public interfaceISimpleTransactionSuperior Represents a transaction that is not a root transaction, but can be escalated to be managed by the MSDTC.
Public interfaceISinglePhaseNotification Describes a resource object that supports single phase commit optimization to participate in a transaction.
Public interfaceITransactionPromoter Describes a delegated transaction for an existing transaction that can be escalated to be managed by the MSDTC when needed.
  DelegateDescription
Public delegateHostCurrentTransactionCallback Provides a mechanism for the hosting environment to supply its own default notion of Current.
Public delegateTransactionCompletedEventHandler Represents the method that handles the TransactionCompleted event of a Transaction class.
Public delegateTransactionStartedEventHandler Represents the method that will handle the DistributedTransactionStarted event of a TransactionManager class.
  EnumerationDescription
Public enumerationDependentCloneOption Controls what kind of dependent transaction to create.
Public enumerationEnlistmentOptions Determines whether the object should be enlisted during the prepare phase.
Public enumerationEnterpriseServicesInteropOption Specifies how distributed transactions interact with COM+ transactions.
Public enumerationIsolationLevel Specifies the isolation level of a transaction.
Public enumerationTransactionScopeOption Provides additional options for creating a transaction scope.
Public enumerationTransactionStatus Describes the current status of a distributed transaction.
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
It seems that System.Transaction does not work with LINQ on SQL Server Compact Edition.      Emil2000 ... Thomas Lee   |   Edit   |   Show History
It seems that System.Transaction does not work with LINQ on SQL Server Compact Edition. This may be due to the fact that the Compact Edition does not support nested transactions.
Transaction Scope Configuration In multi server      Ahmed Selim ... Thomas Lee   |   Edit   |   Show History
[tfl - 13 04 09] removing duplicated content
Tags What's this?: Add a tag
Flag as ContentBug
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker