DispatchOperation.TransactionRequired Property

Definition

Gets or sets a value that specifies whether the operation must execute within a transaction.

public:
 property bool TransactionRequired { bool get(); void set(bool value); };
public bool TransactionRequired { get; set; }
member this.TransactionRequired : bool with get, set
Public Property TransactionRequired As Boolean

Property Value

true if the operation must execute within the scope of a transaction; otherwise, false. The default is false.

Remarks

If the TransactionRequired property is true, WCF sets the current transaction to the transaction used to receive the message if using a transacted transport; or the transaction flowed over the channel if the message had a transaction; or the dispatcher will create a new one.

Applies to