AjTalk.Transactions.TransactionalValue.RollbackValue C# (CSharp) Method

RollbackValue() public method

public RollbackValue ( Transaction transaction ) : void
transaction Transaction
return void
        public void RollbackValue(Transaction transaction)
        {
            lock (this.trobj)
            {
                if (this.transaction != transaction)
                    return;
                this.transaction = null;
                this.value = null;
            }
        }