2 writes to _throttleBackgroundTimer
PresentationFramework (2)
MS\Internal\PtsHost\BackgroundFormatInfo.cs (2)
94
_throttleBackgroundTimer
= new DispatcherTimer(DispatcherPriority.Background);
193
_throttleBackgroundTimer
= null;
7 references to _throttleBackgroundTimer
PresentationFramework (7)
MS\Internal\PtsHost\BackgroundFormatInfo.cs (7)
89
if (
_throttleBackgroundTimer
== null)
95
_throttleBackgroundTimer
.Interval = new TimeSpan(0, 0, (int)_throttleBackgroundSeconds);
96
_throttleBackgroundTimer
.Tick += new EventHandler(OnThrottleBackgroundTimeout);
101
_throttleBackgroundTimer
.Stop();
104
_throttleBackgroundTimer
.Start();
113
if (
_throttleBackgroundTimer
== null)
192
_throttleBackgroundTimer
.Stop();