2 writes to timer
System.Workflow.ComponentModel (2)
AuthoringOM\Design\WorkflowView.cs (2)
2352
this.
timer
= new Timer();
2377
this.
timer
= null;
11 references to timer
System.Workflow.ComponentModel (11)
AuthoringOM\Design\WorkflowView.cs (11)
2353
this.
timer
.Interval = WorkflowTimer.TimerInterval;
2354
this.
timer
.Tick += new EventHandler(OnTimer);
2355
this.
timer
.Stop();
2371
if (this.
timer
!= null)
2373
if (this.
timer
.Enabled)
2374
this.
timer
.Stop();
2376
this.
timer
.Dispose();
2384
if (!this.
timer
.Enabled)
2385
this.
timer
.Start();
2400
if (this.elapsedEvents.Count == 0 && this.
timer
.Enabled)
2401
this.
timer
.Stop();