2 instantiations of Bucket
System.Transactions.Local (2)
System\Transactions\TransactionTable.cs (2)
553headBucket = new Bucket(this); 639Bucket newBucket = new Bucket(_owningSet);
7 references to Bucket
System.Transactions.Local (7)
System\Transactions\InternalTransaction.cs (1)
116internal Bucket? _tableBucket;
System\Transactions\TransactionTable.cs (6)
549internal Bucket headBucket; 576Bucket? currentBucket = headBucket; 585currentBucket = (Bucket?)nextWeakBucket.Target; 604private Bucket? _previous; 639Bucket newBucket = new Bucket(_owningSet); 642Bucket oldBucket = Interlocked.CompareExchange(ref _owningSet.headBucket, newBucket, this);