2 writes to _purgingTimer
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\TimeBoundedCache.cs (2)
94
_purgingTimer
= null;
106
_purgingTimer
= new Timer(new TimerCallback(PurgeCallback), this, _purgeInterval, TimeSpan.FromMilliseconds(-1));
7 references to _purgingTimer
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\TimeBoundedCache.cs (7)
90
if (this.Count == 0 &&
_purgingTimer
!= null)
92
_purgingTimer
.Change(TimeSpan.FromMilliseconds(-1), TimeSpan.FromMilliseconds(-1));
93
_purgingTimer
.Dispose();
104
if (
_purgingTimer
== null)
429
if (self.
_purgingTimer
== null)
434
if (self.Count > 0 && self.
_purgingTimer
!= null)
436
self.
_purgingTimer
.Change(self._purgeInterval, TimeSpan.FromMilliseconds(-1));