2 instantiations of Bucket
System.Transactions.Local (2)
System\Transactions\TransactionTable.cs (2)
550headBucket = new Bucket(this); 636Bucket 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)
546internal Bucket headBucket; 573Bucket? currentBucket = headBucket; 582currentBucket = (Bucket?)nextWeakBucket.Target; 601private Bucket? _previous; 636Bucket newBucket = new Bucket(_owningSet); 639Bucket oldBucket = Interlocked.CompareExchange(ref _owningSet.headBucket, newBucket, this);