27 instantiations of TransactionScope
ComSvcConfig (1)
ComplusEndpointConfigContainer.cs (1)
279scope = new TransactionScope(TransactionScopeOption.Required, opts, EnterpriseServicesInteropOption.Full);
System.Activities (5)
System\Activities\RuntimeTransactionHandle.cs (1)
309this.scope = new TransactionScope(TransactionScopeOption.Suppress);
System\Activities\WorkflowApplication.cs (4)
5663using (new TransactionScope(TransactionScopeOption.Suppress)) 5712using (new TransactionScope(TransactionScopeOption.Suppress)) 5814using (new TransactionScope(TransactionScopeOption.Suppress)) 5827using (new TransactionScope(TransactionScopeOption.Suppress))
System.Activities.DurableInstancing (1)
System\Activities\DurableInstancing\SqlWorkflowInstanceStore.cs (1)
499using (TransactionScope transactionScope = new TransactionScope(TransactionScopeOption.Suppress))
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 (7)
System\ServiceModel\Channels\MsmqReceiveHelper.cs (1)
199using (TransactionScope scope = new TransactionScope(TransactionScopeOption.RequiresNew))
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.ServiceModel.Activities (2)
System\ServiceModel\Activities\Dispatcher\DurableInstanceManager.cs (2)
388using (new TransactionScope(TransactionScopeOption.Suppress)) 429using (new TransactionScope(TransactionScopeOption.Suppress))
System.Workflow.Runtime (6)
Hosting\SharedConnectionWorkflowTransactionService.cs (1)
192using (TransactionScope ts = new TransactionScope(tx))
Hosting\WorkflowTransactionService.cs (1)
32using (TransactionScope ts = new TransactionScope(tx))
Scheduler.cs (1)
169new TransactionScope(transactionalProperties.Transaction, TimeSpan.Zero, EnterpriseServicesInteropOption.Full);
System\Activities\Statements\Interop.cs (1)
1811using (System.Transactions.TransactionScope ts = new System.Transactions.TransactionScope(this.transaction))
System\Activities\Statements\InteropExecutor.cs (1)
242transactionalProperties.TransactionScope = new System.Transactions.TransactionScope(transactionalProperties.Transaction, TimeSpan.Zero, EnterpriseServicesInteropOption.Full);
WorkflowExecutor.cs (1)
732using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Suppress))
System.WorkflowServices (2)
System\ServiceModel\Dispatcher\ServiceDurableInstance.cs (2)
749this.scope = new TransactionScope(TransactionScopeOption.Suppress); 754this.scope = new TransactionScope(clonedTransaction);
45 references to TransactionScope
ComSvcConfig (1)
ComplusEndpointConfigContainer.cs (1)
36TransactionScope scope;
System.Activities (6)
System\Activities\RuntimeTransactionHandle.cs (1)
28TransactionScope scope;
System\Activities\WorkflowApplication.cs (5)
1864TransactionScope scope = null; 1972TransactionScope scope = null; 1996out WorkflowPersistenceContext context, out TransactionScope scope) 2002static void CompletePersistenceContext(WorkflowPersistenceContext context, TransactionScope scope, bool success) 2306TransactionScope scope = null;
System.Activities.DurableInstancing (1)
System\Activities\DurableInstancing\SqlWorkflowInstanceStore.cs (1)
499using (TransactionScope transactionScope = new TransactionScope(TransactionScopeOption.Suppress))
System.Runtime.DurableInstancing (6)
System\Runtime\DurableInstancing\InstancePersistenceContext.cs (1)
1259TransactionScope txScope = null;
System\Runtime\TransactedAsyncResult.cs (1)
116TransactionScope transactionScope;
System\Runtime\TransactionHelper.cs (4)
21using (TransactionScope scope = new TransactionScope(transaction)) 30public static TransactionScope CreateTransactionScope(Transaction transaction) 50public static void CompleteTransactionScope(ref TransactionScope scope) 52TransactionScope localScope = scope;
System.ServiceModel (8)
System\ServiceModel\Channels\MsmqReceiveHelper.cs (1)
199using (TransactionScope scope = new TransactionScope(TransactionScopeOption.RequiresNew))
System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
1719using (TransactionScope scope = new TransactionScope(tx))
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
1835TransactionScope scope;
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 (2)
434TransactionScope scope; 803internal TransactionScope CreateTransactionScope(Transaction transaction)
System.ServiceModel.Activities (4)
System\ServiceModel\Activities\Dispatcher\ControlOperationInvoker.cs (2)
1007TransactionScope scope = TransactionHelper.CreateTransactionScope(this.currentTransaction); 1065TransactionScope scope = TransactionHelper.CreateTransactionScope(thisPtr.currentTransaction);
System\ServiceModel\Activities\InternalSendMessage.cs (2)
1917System.Transactions.TransactionScope scope = TransactionHelper.CreateTransactionScope(thisPtr.currentTransactionContext); 1980System.Transactions.TransactionScope scope = TransactionHelper.CreateTransactionScope(thisPtr.currentTransactionContext);
System.Transactions (13)
System\Transactions\Transaction.cs (5)
225internal static EnterpriseServicesInteropOption InteropMode(TransactionScope currentScope) 236internal static Transaction FastGetTransaction(TransactionScope currentScope, ContextData contextData, out Transaction contextTransaction) 294out TransactionScope currentScope, 322TransactionScope currentScope = null; 1554internal TransactionScope CurrentScope;
System\Transactions\TransactionScope.cs (8)
160TransactionScope.TimerCallback, 257TransactionScope.TimerCallback, 350TransactionScope.TimerCallback, 557TransactionScope.TimerCallback, 632TransactionScope actualCurrentScope = this.threadContextData.CurrentScope; 975TransactionScope scope = state as TransactionScope; 1404TransactionScope savedCurrentScope;
System.Workflow.Runtime (5)
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))
TransactionalProperties.cs (1)
28internal TransactionScope TransactionScope;
WorkflowExecutor.cs (1)
732using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Suppress))
System.WorkflowServices (1)
System\ServiceModel\Dispatcher\ServiceDurableInstance.cs (1)
743TransactionScope scope;