CallbackBehaviorAttribute.TransactionIsolationLevel Property     
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the transaction isolation level.
public:
 property System::Transactions::IsolationLevel TransactionIsolationLevel { System::Transactions::IsolationLevel get(); void set(System::Transactions::IsolationLevel value); };public System.Transactions.IsolationLevel TransactionIsolationLevel { get; set; }member this.TransactionIsolationLevel : System.Transactions.IsolationLevel with get, setPublic Property TransactionIsolationLevel As IsolationLevelProperty Value
A IsolationLevel value that specifies the transaction isolation level. The default is Unspecified.
Exceptions
The value is not one of the IsolationLevel values.
Remarks
The isolation level in which your transaction runs determines how data is treated when changes are made in other transactions and how long your transaction must hold locks to protect against these changes. For example, the default value, Unspecified, specifies that no updating or inserting can occur until the transaction is complete.