2 writes to delayLowerBound
System.ServiceModel.Channels (2)
System\ServiceModel\Channels\UdpRetransmissionSettings.cs (2)
68
this.
delayLowerBound
= delayLowerBound;
133
this.
delayLowerBound
= value;
8 references to delayLowerBound
System.ServiceModel.Channels (8)
System\ServiceModel\Channels\UdpRetransmissionSettings.cs (8)
72
this.delayLowerBoundMilliseconds = TimeoutHelper.ToMilliseconds(this.
delayLowerBound
);
80
: this(other.maxUnicastRetransmitCount, other.maxMulticastRetransmitCount, other.
delayLowerBound
, other.delayUpperBound, other.maxDelayPerRetransmission)
124
return this.
delayLowerBound
;
134
this.delayLowerBoundMilliseconds = TimeoutHelper.ToMilliseconds(this.
delayLowerBound
);
176
return !TimeSpansEqual(this.
delayLowerBound
, UdpConstants.Defaults.DelayLowerBoundTimeSpan);
218
if (this.
delayLowerBound
> this.delayUpperBound)
220
throw FxTrace.Exception.ArgumentOutOfRange("DelayLowerBound", this.
delayLowerBound
, SR.Property1LessThanOrEqualToProperty2("DelayLowerBound", this.
delayLowerBound
, "DelayUpperBound", this.delayUpperBound));