2 writes to _throttleBackgroundTimer
PresentationFramework (2)
src\Framework\MS\Internal\Documents\TextBoxView.cs (2)
1142
_throttleBackgroundTimer
= new DispatcherTimer(DispatcherPriority.Background);
2833
_throttleBackgroundTimer
= null;
7 references to _throttleBackgroundTimer
PresentationFramework (7)
src\Framework\MS\Internal\Documents\TextBoxView.cs (7)
1137
if (
_throttleBackgroundTimer
== null)
1143
_throttleBackgroundTimer
.Interval = new TimeSpan(0, 0, _throttleBackgroundSeconds);
1144
_throttleBackgroundTimer
.Tick += new EventHandler(OnThrottleBackgroundTimeout);
1149
_throttleBackgroundTimer
.Stop();
1152
_throttleBackgroundTimer
.Start();
2304
if (
_throttleBackgroundTimer
== null)
2832
_throttleBackgroundTimer
.Stop();