Aspectacular.DtcTransactionAspect.Step_2_BeforeTryingMethodExec C# (CSharp) Method

Step_2_BeforeTryingMethodExec() public method

public Step_2_BeforeTryingMethodExec ( ) : void
return void
        public override void Step_2_BeforeTryingMethodExec()
        {
            this.LogInformationWithKey("Starting DTC transaction", "Scope = {0}, Isolation Level = {1}, Timeout = {2}", this.transationScope, this.options.IsolationLevel, this.options.Timeout);
            this.transaction = new TransactionScope(this.transationScope, this.options);
        }