2 writes to debugController
System.Activities (2)
System\Activities\Runtime\ActivityExecutor.cs (2)
967
this.
debugController
= new DebugController(this.host);
1036
this.
debugController
= null;
8 references to debugController
System.Activities (8)
System\Activities\Runtime\ActivityExecutor.cs (8)
957
if (this.
debugController
== null)
970
return this.
debugController
!= null;
975
if (this.
debugController
!= null) // Don't use IsDebugged() for perf reason.
977
this.
debugController
.ActivityCompleted(instance);
1020
this.
debugController
.WorkflowStarted();
1033
if (this.
debugController
!= null) // Don't use IsDebugged() because it may create debugController unnecessarily.
1035
this.
debugController
.WorkflowCompleted();
3495
executor.
debugController
.ActivityStarted(this.ActivityInstance);