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