1 implementation of MaxRetryCount
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\ReliableChannelFactory.cs (1)
35public int MaxRetryCount { get; }
8 references to MaxRetryCount
System.ServiceModel.Primitives (8)
System\ServiceModel\Channels\ChannelReliableSession.cs (2)
643return WsrmUtilities.CalculateKeepAliveInterval(Settings.InactivityTimeout, Settings.MaxRetryCount); 649TimeSpan keepAliveInterval = WsrmUtilities.CalculateKeepAliveInterval(Settings.InactivityTimeout, Settings.MaxRetryCount);
System\ServiceModel\Channels\ClientReliableDuplexSessionChannel.cs (2)
834if (attemptInfo.RetryCount > Settings.MaxRetryCount) 846if (attemptInfo.RetryCount < Settings.MaxRetryCount)
System\ServiceModel\Channels\ReliableOutputSessionChannel.cs (2)
281if (attemptInfo.RetryCount > Settings.MaxRetryCount) 294(attemptInfo.RetryCount == Settings.MaxRetryCount), maskUnhandledException);
System\ServiceModel\Channels\ReliableRequestSessionChannel.cs (2)
279if (attemptInfo.RetryCount > settings.MaxRetryCount) 296if (attemptInfo.RetryCount < settings.MaxRetryCount)