1 write to transactionConnectionTable
System.Workflow.Runtime (1)
Hosting\SharedConnectionWorkflowTransactionService.cs (1)
112
this.
transactionConnectionTable
= new Dictionary<Transaction, SharedConnectionInfo>();
9 references to transactionConnectionTable
System.Workflow.Runtime (9)
Hosting\SharedConnectionWorkflowTransactionService.cs (9)
111
if (this.
transactionConnectionTable
== null)
140
foreach (KeyValuePair<Transaction, SharedConnectionInfo> kvp in this.
transactionConnectionTable
)
145
this.
transactionConnectionTable
.Clear();
262
if (
transactionConnectionTable
.TryGetValue(transaction, out connectionInfo))
265
this.
transactionConnectionTable
.Remove(transaction);
270
" not found in table of count " + this.
transactionConnectionTable
.Count);
279
this.
transactionConnectionTable
.Add(transaction, connectionInfo);
281
" in table of count " + this.
transactionConnectionTable
.Count);
289
return
transactionConnectionTable
[transaction];