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