5 writes to weakTransaction
System.Data (5)
fx\src\data\System\Data\Odbc\OdbcConnection.cs (5)
182weakTransaction = null; 185weakTransaction = new WeakReference((OdbcTransaction)value); 275weakTransaction = null; 331this.weakTransaction = null; 822this.weakTransaction = new WeakReference(transaction); // MDAC 69188
10 references to weakTransaction
System.Data (10)
fx\src\data\System\Data\Odbc\OdbcConnection.cs (10)
175if (null != weakTransaction) { 176result = ((OdbcTransaction)weakTransaction.Target); 273WeakReference weak = weakTransaction; 329WeakReference weak = this.weakTransaction; 533if (null != weakTransaction) { // transaction may exist 534OdbcTransaction weak = (weakTransaction.Target as OdbcTransaction); 796if ((null != this.weakTransaction) && this.weakTransaction.IsAlive) { // regression from Dispose/Finalize work 852if ((null != this.weakTransaction) && this.weakTransaction.IsAlive) {