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