2 writes to maxDelayPerRetransmission
System.ServiceModel.Channels (2)
System\ServiceModel\Channels\UdpRetransmissionSettings.cs (2)
70
this.
maxDelayPerRetransmission
= maxDelayPerRetransmission;
169
this.
maxDelayPerRetransmission
= value;
7 references to maxDelayPerRetransmission
System.ServiceModel.Channels (7)
System\ServiceModel\Channels\UdpRetransmissionSettings.cs (7)
74
this.maxDelayMilliseconds = TimeoutHelper.ToMilliseconds(this.
maxDelayPerRetransmission
);
80
: this(other.maxUnicastRetransmitCount, other.maxMulticastRetransmitCount, other.delayLowerBound, other.delayUpperBound, other.
maxDelayPerRetransmission
)
160
return this.
maxDelayPerRetransmission
;
170
this.maxDelayMilliseconds = TimeoutHelper.ToMilliseconds(this.
maxDelayPerRetransmission
);
186
return !TimeSpansEqual(this.
maxDelayPerRetransmission
, UdpConstants.Defaults.MaxDelayPerRetransmissionTimeSpan);
224
if (this.delayUpperBound > this.
maxDelayPerRetransmission
)
226
throw FxTrace.Exception.ArgumentOutOfRange("DelayUpperBound", this.delayUpperBound, SR.Property1LessThanOrEqualToProperty2("DelayUpperBound", this.delayUpperBound, "MaxDelayPerRetransmission", this.
maxDelayPerRetransmission
));