2 writes to delayUpperBound
System.ServiceModel.Channels (2)
System\ServiceModel\Channels\UdpRetransmissionSettings.cs (2)
69
this.
delayUpperBound
= delayUpperBound;
151
this.
delayUpperBound
= value;
10 references to delayUpperBound
System.ServiceModel.Channels (10)
System\ServiceModel\Channels\UdpRetransmissionSettings.cs (10)
73
this.delayUpperBoundMilliseconds = TimeoutHelper.ToMilliseconds(this.
delayUpperBound
);
80
: this(other.maxUnicastRetransmitCount, other.maxMulticastRetransmitCount, other.delayLowerBound, other.
delayUpperBound
, other.maxDelayPerRetransmission)
142
return this.
delayUpperBound
;
152
this.delayUpperBoundMilliseconds = TimeoutHelper.ToMilliseconds(this.
delayUpperBound
);
181
return !TimeSpansEqual(this.
delayUpperBound
, UdpConstants.Defaults.DelayUpperBoundTimeSpan);
218
if (this.delayLowerBound > this.
delayUpperBound
)
220
throw FxTrace.Exception.ArgumentOutOfRange("DelayLowerBound", this.delayLowerBound, SR.Property1LessThanOrEqualToProperty2("DelayLowerBound", this.delayLowerBound, "DelayUpperBound", this.
delayUpperBound
));
224
if (this.
delayUpperBound
> this.maxDelayPerRetransmission)
226
throw FxTrace.Exception.ArgumentOutOfRange("DelayUpperBound", this.
delayUpperBound
, SR.Property1LessThanOrEqualToProperty2("DelayUpperBound", this.
delayUpperBound
, "MaxDelayPerRetransmission", this.maxDelayPerRetransmission));