13 references to TransactionScope
System.Runtime.DurableInstancing (3)
System\Runtime\TransactionHelper.cs (3)
21using (TransactionScope scope = new TransactionScope(transaction)) 34return transaction == null ? null : new TransactionScope(transaction); 41return new TransactionScope(tempTransaction.Clone());
System.ServiceModel (6)
System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
1719using (TransactionScope scope = new TransactionScope(tx))
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
1928this.scope = new TransactionScope(this.rpc.transaction.Current);
System\ServiceModel\Dispatcher\ListenerHandler.cs (1)
305using (TransactionScope scope = new TransactionScope(tx))
System\ServiceModel\Dispatcher\ReceiveContextRPCFacet.cs (2)
105using (TransactionScope scope = new TransactionScope(transaction)) 237using (TransactionScope scope = new TransactionScope(this.currentTransaction))
System\ServiceModel\Dispatcher\TransactionBehavior.cs (1)
812return new TransactionScope(transaction);
System.Workflow.Runtime (3)
Hosting\SharedConnectionWorkflowTransactionService.cs (1)
192using (TransactionScope ts = new TransactionScope(tx))
Hosting\WorkflowTransactionService.cs (1)
32using (TransactionScope ts = new TransactionScope(tx))
System\Activities\Statements\Interop.cs (1)
1811using (System.Transactions.TransactionScope ts = new System.Transactions.TransactionScope(this.transaction))
System.WorkflowServices (1)
System\ServiceModel\Dispatcher\ServiceDurableInstance.cs (1)
754this.scope = new TransactionScope(clonedTransaction);