2 writes to _throttleBackgroundTimer
PresentationFramework (2)
src\Framework\MS\Internal\PtsHost\BackgroundFormatInfo.cs (2)
98
_throttleBackgroundTimer
= new DispatcherTimer(DispatcherPriority.Background);
197
_throttleBackgroundTimer
= null;
7 references to _throttleBackgroundTimer
PresentationFramework (7)
src\Framework\MS\Internal\PtsHost\BackgroundFormatInfo.cs (7)
93
if (
_throttleBackgroundTimer
== null)
99
_throttleBackgroundTimer
.Interval = new TimeSpan(0, 0, (int)_throttleBackgroundSeconds);
100
_throttleBackgroundTimer
.Tick += new EventHandler(OnThrottleBackgroundTimeout);
105
_throttleBackgroundTimer
.Stop();
108
_throttleBackgroundTimer
.Start();
117
if (
_throttleBackgroundTimer
== null)
196
_throttleBackgroundTimer
.Stop();