4 writes to threadContextData
System.Transactions (4)
System\Transactions\TransactionScope.cs (4)
1070this.threadContextData = CallContextCurrentData.CreateOrGetCurrentData(this.ContextKey); 1081this.threadContextData = ContextData.TLSCurrentData; 1116this.threadContextData = CallContextCurrentData.CreateOrGetCurrentData(this.savedCurrentScope.ContextKey); 1128this.threadContextData = ContextData.TLSCurrentData;
9 references to threadContextData
System.Transactions (9)
System\Transactions\TransactionScope.cs (9)
632TransactionScope actualCurrentScope = this.threadContextData.CurrentScope; 634Transaction current = Transaction.FastGetTransaction( actualCurrentScope, this.threadContextData, out contextTransaction ); 753actualCurrentScope = this.threadContextData.CurrentScope; 1087this.threadContextData.CurrentScope = this; 1150ContextData.TLSCurrentData = this.threadContextData; 1157this.threadContextData.CurrentScope = this.savedCurrentScope; 1179this.threadContextData.CurrentTransaction = newCurrent; 1191this.threadContextData.CurrentTransaction = newCurrent; 1325this.threadContextData.CurrentTransaction = this.contextTransaction;