2 implementations of InactivityTimeout
System.ServiceModel (2)
System\ServiceModel\Channels\ReliableChannelFactory.cs (1)
58public TimeSpan InactivityTimeout
System\ServiceModel\Channels\ReliableChannelListener.cs (1)
69public TimeSpan InactivityTimeout
6 references to InactivityTimeout
System.ServiceModel (6)
System\ServiceModel\Channels\ChannelReliableSession.cs (6)
40this.inactivityTimer = new InterruptibleTimer(this.settings.InactivityTimeout, new WaitCallback(this.OnInactivityElapsed), null); 353string exceptionMessage = SR.GetString(SR.SequenceTerminatedInactivityTimeoutExceeded, this.settings.InactivityTimeout); 362string faultReason = SR.GetString(SR.SequenceTerminatedInactivityTimeoutExceeded, this.settings.InactivityTimeout); 756return Ticks.ToTimeSpan(Ticks.FromTimeSpan(this.Settings.InactivityTimeout) / 2); 759return WsrmUtilities.CalculateKeepAliveInterval(this.Settings.InactivityTimeout, this.Settings.MaxRetryCount); 765TimeSpan keepAliveInterval = WsrmUtilities.CalculateKeepAliveInterval(this.Settings.InactivityTimeout, this.Settings.MaxRetryCount);