2 writes to _throttleBackgroundTimer
PresentationFramework (2)
MS\Internal\Documents\TextBoxView.cs (2)
1138
_throttleBackgroundTimer
= new DispatcherTimer(DispatcherPriority.Background);
2860
_throttleBackgroundTimer
= null;
9 references to _throttleBackgroundTimer
PresentationFramework (9)
MS\Internal\Documents\TextBoxView.cs (9)
1133
if (
_throttleBackgroundTimer
== null)
1139
_throttleBackgroundTimer
.Interval = new TimeSpan(0, 0, _throttleBackgroundSeconds);
1140
_throttleBackgroundTimer
.Tick += new EventHandler(OnThrottleBackgroundTimeout);
1145
_throttleBackgroundTimer
.Stop();
1148
_throttleBackgroundTimer
.Start();
2308
if (
_throttleBackgroundTimer
== null)
2853
if (
_throttleBackgroundTimer
== null)
2858
_throttleBackgroundTimer
.Stop();
2859
_throttleBackgroundTimer
.Tick -= OnThrottleBackgroundTimeout;