2 instantiations of InterruptibleTimer
System.ServiceModel (2)
System\ServiceModel\Channels\ChannelReliableSession.cs (2)
40
this.inactivityTimer = new
InterruptibleTimer
(this.settings.InactivityTimeout, new WaitCallback(this.OnInactivityElapsed), null);
646
this.pollingTimer = new
InterruptibleTimer
(this.GetPollingInterval(), this.OnPollingTimerElapsed, null);
4 references to InterruptibleTimer
System.ServiceModel (4)
System\ServiceModel\Channels\ChannelReliableSession.cs (2)
23
InterruptibleTimer
inactivityTimer;
636
InterruptibleTimer
pollingTimer;
System\ServiceModel\Channels\ReliableMessagingHelpers.cs (2)
370
InterruptibleTimer
interruptibleTimer = (
InterruptibleTimer
)state;