5 writes to DuplicateMessageHistoryLength
System.ServiceModel.Channels (3)
System\ServiceModel\Channels\UdpTransportBindingElement.cs (1)
294this.DuplicateMessageHistoryLength = UdpConstants.Defaults.DuplicateMessageHistoryLengthWithRetransmission;
System\ServiceModel\Configuration\UdpTransportElement.cs (1)
23udpTransportBindingElement.DuplicateMessageHistoryLength = this.DuplicateMessageHistoryLength;
System\ServiceModel\UdpBinding.cs (1)
70this.udpTransport.DuplicateMessageHistoryLength = value;
System.ServiceModel.Discovery (2)
System\ServiceModel\Discovery\DiscoveryDefaults.cs (1)
42udpBE.DuplicateMessageHistoryLength = DuplicateMessageHistoryLength;
System\ServiceModel\Discovery\UdpTransportSettings.cs (1)
29this.UdpTransportBindingElement.DuplicateMessageHistoryLength = value;
12 references to DuplicateMessageHistoryLength
System.ServiceModel.Channels (11)
System\ServiceModel\Channels\UdpChannelFactory.cs (3)
42bool duplicateDetectionEnabled = this.udpTransportBindingElement.DuplicateMessageHistoryLength > 0 ? typeof(TChannel) != typeof(IOutputChannel) : false; 298if (factory.udpTransportBindingElement.DuplicateMessageHistoryLength > 0) 300this.DuplicateDetector = new DuplicateMessageDetector(factory.udpTransportBindingElement.DuplicateMessageHistoryLength);
System\ServiceModel\Channels\UdpChannelListener.cs (3)
46if (udpTransportBindingElement.DuplicateMessageHistoryLength > 0) 48this.duplicateDetector = new DuplicateMessageDetector(udpTransportBindingElement.DuplicateMessageHistoryLength); 69UdpUtility.ValidateDuplicateDetectionAndRetransmittionSupport(this.messageEncoderFactory, this.udpTransportBindingElement.RetransmissionSettings.Enabled, this.udpTransportBindingElement.DuplicateMessageHistoryLength > 0);
System\ServiceModel\Channels\UdpTransportBindingElement.cs (2)
318if (this.DuplicateMessageHistoryLength != udpTransport.DuplicateMessageHistoryLength)
System\ServiceModel\Configuration\UdpTransportElement.cs (1)
37this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.DuplicateMessageHistoryLength, udpTransportBindingElement.DuplicateMessageHistoryLength);
System\ServiceModel\UdpBinding.cs (2)
49this.DuplicateMessageHistoryLength = transport.DuplicateMessageHistoryLength; 66return this.udpTransport.DuplicateMessageHistoryLength;
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\UdpTransportSettings.cs (1)
25return this.UdpTransportBindingElement.DuplicateMessageHistoryLength;