Transaction.Clone Method

Definition

Creates a clone of the transaction.

public:
 System::Transactions::Transaction ^ Clone();
public System.Transactions.Transaction Clone ();
member this.Clone : unit -> System.Transactions.Transaction
Public Function Clone () As Transaction

Returns

A Transaction that is a copy of the current transaction object.

Remarks

Clones are created to pass transactions. For example, you might not want to pass a CommittableTransaction to other applications, because you do not want others to commit your transaction. If you try to marshal or serialize a transaction, a clone is created for you automatically.

Applies to