2 instantiations of Bucket
System.Transactions (2)
System\Transactions\TransactionTable.cs (2)
583this.headBucket = new Bucket( this ); 669Bucket newBucket = new Bucket( this.owningSet );
7 references to Bucket
System.Transactions (7)
System\Transactions\InternalTransaction.cs (1)
145internal Bucket tableBucket;
System\Transactions\TransactionTable.cs (6)
579internal Bucket headBucket; 606Bucket currentBucket = this.headBucket; 615currentBucket = (Bucket)nextWeakBucket.Target; 634Bucket previous; 669Bucket newBucket = new Bucket( this.owningSet ); 672Bucket oldBucket = Interlocked.CompareExchange( ref this.owningSet.headBucket, newBucket, this );