6 writes to runtimeTransaction
System.Activities (6)
System\Activities\Runtime\ActivityExecutor.cs (6)
1238
this.
runtimeTransaction
= new RuntimeTransactionData(handle, transaction, isolationScope);
1386
this.
runtimeTransaction
= null;
3955
this.executor.
runtimeTransaction
= null;
4027
thisPtr.executor.
runtimeTransaction
= null;
4119
thisPtr.executor.
runtimeTransaction
= null;
4189
thisPtr.executor.
runtimeTransaction
= null;
35 references to runtimeTransaction
System.Activities (35)
System\Activities\Runtime\ActivityExecutor.cs (35)
503
get { return this.
runtimeTransaction
!= null; }
510
if (this.
runtimeTransaction
!= null)
512
return this.
runtimeTransaction
.ClonedTransaction;
1102
RuntimeTransactionData localRuntimeTransaction = this.
runtimeTransaction
;
1144
RuntimeTransactionData localRuntimeTransaction = this.
runtimeTransaction
;
1181
RuntimeTransactionData localRuntimeTransaction = this.
runtimeTransaction
;
1286
if (this.
runtimeTransaction
!= null)
1288
isolationScope = this.
runtimeTransaction
.IsolationScope;
1295
if (this.
runtimeTransaction
!= null && this.
runtimeTransaction
.TransactionHandle == handle)
1297
this.
runtimeTransaction
.ShouldScheduleCompletion = true;
1308
if (this.
runtimeTransaction
.IsRootCancelPending)
1316
this.
runtimeTransaction
.IsRootCancelPending = false;
1330
if (this.
runtimeTransaction
!= null && this.
runtimeTransaction
.IsolationScope == instance)
1336
this.
runtimeTransaction
.ShouldScheduleCompletion = true;
1351
if (this.
runtimeTransaction
!= null && this.
runtimeTransaction
.IsolationScope == terminatedInstance)
1357
this.
runtimeTransaction
.Rollback(terminationReason);
1381
if (this.
runtimeTransaction
.TransactionHandle.AbortInstanceOnTransactionFailure)
1579
if (this.
runtimeTransaction
!= null && this.
runtimeTransaction
.IsolationScope != null)
1581
if (this.
runtimeTransaction
.IsRootCancelPending)
1586
this.
runtimeTransaction
.IsRootCancelPending = true;
1673
if (this.
runtimeTransaction
!= null && this.
runtimeTransaction
.IsolationScope == exceptionPropagator)
1679
this.
runtimeTransaction
.ShouldScheduleCompletion = false;
2093
if (this.
runtimeTransaction
!= null && this.
runtimeTransaction
.ShouldScheduleCompletion)
2095
this.scheduler.PushWork(new CompleteTransactionWorkItem(this.
runtimeTransaction
.IsolationScope));
2542
if (this.
runtimeTransaction
!= null)
2544
isolationInstance = this.
runtimeTransaction
.IsolationScope;
2662
if (this.
runtimeTransaction
!= null)
2664
isolationInstance = this.
runtimeTransaction
.IsolationScope;
3922
this.runtimeTransaction = executor.
runtimeTransaction
;