AjTalk.Transactions.TransactionManager.RollbackTransaction C# (CSharp) Метод

RollbackTransaction() публичный Метод

public RollbackTransaction ( ) : void
Результат void
        public void RollbackTransaction()
        {
            lock (this)
                this.transactions.Remove(current);

            long trtime = Interlocked.Increment(ref this.time);
            Interlocked.Increment(ref this.time);
            current.Rollback(trtime);

            current = null;
        }