33 references to UdpConstants
dotnet-svcutil-lib (33)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UdpRetransmissionSettings.cs (8)
31UdpConstants.Defaults.DelayLowerBoundTimeSpan, UdpConstants.Defaults.DelayUpperBoundTimeSpan, UdpConstants.Defaults.MaxDelayPerRetransmissionTimeSpan) 84[DefaultValue(UdpConstants.Defaults.MaxUnicastRetransmitCount)] 102[DefaultValue(UdpConstants.Defaults.MaxMulticastRetransmitCount)] 176return !TimeSpansEqual(_delayLowerBound, UdpConstants.Defaults.DelayLowerBoundTimeSpan); 181return !TimeSpansEqual(_delayUpperBound, UdpConstants.Defaults.DelayUpperBoundTimeSpan); 186return !TimeSpansEqual(_maxDelayPerRetransmission, UdpConstants.Defaults.MaxDelayPerRetransmissionTimeSpan);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UdpTransportBindingElement.cs (17)
33_duplicateMessageHistoryLength = UdpConstants.Defaults.DuplicateMessageHistoryLength; 34_maxPendingMessagesTotalSize = UdpConstants.Defaults.DefaultMaxPendingMessagesTotalSize; 37_socketReceiveBufferSize = UdpConstants.Defaults.SocketReceiveBufferSize; 38_timeToLive = UdpConstants.Defaults.TimeToLive; 52[DefaultValue(UdpConstants.Defaults.DuplicateMessageHistoryLength)] 68[DefaultValue(UdpConstants.Defaults.DefaultMaxPendingMessagesTotalSize)] 78const long min = UdpConstants.MinPendingMessagesTotalSize; 89[DefaultValue(UdpConstants.Defaults.MulticastInterfaceId)] 111get { return UdpConstants.Scheme; } 114[DefaultValue(UdpConstants.Defaults.SocketReceiveBufferSize)] 120if (value < UdpConstants.MinReceiveBufferSize) 123string.Format(SRServiceModel.ArgumentOutOfMinRange, UdpConstants.MinReceiveBufferSize)); 130[DefaultValue(UdpConstants.Defaults.TimeToLive)] 136if (value < UdpConstants.MinTimeToLive || value > UdpConstants.MaxTimeToLive) 206if (assertion.LocalName.Equals(UdpConstants.RetransmissionEnabled, StringComparison.Ordinal)) 208this.DuplicateMessageHistoryLength = UdpConstants.Defaults.DuplicateMessageHistoryLengthWithRetransmission;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UdpTransportImporter.cs (2)
33if (!string.IsNullOrEmpty(transportUri) && transportUri.Equals(UdpConstants.WsdlSoapUdpTransportUri, StringComparison.Ordinal)) 49if (transportUri != null && transportUri.Equals(UdpConstants.WsdlSoapUdpTransportUri, StringComparison.Ordinal) && !context.BindingElements.Contains(typeof(TransportBindingElement)))
FrameworkFork\System.ServiceModel\System\ServiceModel\UdpBinding.cs (6)
41[DefaultValue(UdpConstants.Defaults.DuplicateMessageHistoryLength)] 67[DefaultValue(UdpConstants.Defaults.MaxRetransmitCount)] 81[DefaultValue(UdpConstants.Defaults.DefaultMaxPendingMessagesTotalSize)] 94[DefaultValue(UdpConstants.Defaults.MaxReceivedMessageSize)] 107[DefaultValue(UdpConstants.Defaults.MulticastInterfaceId)] 134[DefaultValue(UdpConstants.Defaults.TimeToLive)]