1 write to retransmitSettings
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\UdpOutputChannel.cs (1)
48this.retransmitSettings = retransmissionSettings;
12 references to retransmitSettings
System.ServiceModel.Channels (12)
System\ServiceModel\Channels\UdpOutputChannel.cs (12)
52if (this.retransmitSettings.Enabled) 167if (this.retransmitSettings.Enabled == true) 349Fx.Assert(this.retransmitSettings.Enabled, "CreateRetransmitCalculator called when no retransmission set to happen"); 350int lowerBound = this.retransmitSettings.GetDelayLowerBound(); 351int upperBound = this.retransmitSettings.GetDelayUpperBound(); 354int maxDelay = this.retransmitSettings.GetMaxDelayPerRetransmission(); 355int maxRetransmitCount = sendingMulticast ? this.retransmitSettings.MaxMulticastRetransmitCount : this.retransmitSettings.MaxUnicastRetransmitCount; 362Fx.Assert(this.retransmitSettings.Enabled, "RetransmitStarting called when retransmission is disabled"); 383Fx.Assert(this.retransmitSettings.Enabled, "RetransmitStopping called when retransmission is disabled"); 406return this.retransmitSettings.MaxMulticastRetransmitCount > 0; 410return this.retransmitSettings.MaxUnicastRetransmitCount > 0;