Adf.Base.Transactions.TransactionScopeProvider.TransactionScopeProvider C# (CSharp) Method

TransactionScopeProvider() public method

public TransactionScopeProvider ( ) : System.Transactions
return System.Transactions
        public TransactionScopeProvider()
        {
            var options = new TransactionOptions {IsolationLevel = IsolationLevel.ReadCommitted};

            _transactionScope = new TransactionScope(TransactionScopeOption.Required, options);
        }