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