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