50 references to Defaults
System.ServiceModel.Channels (50)
System\ServiceModel\Channels\UdpChannelBase.cs (2)
52this.maxPendingMessagesTotalSize = maxPendingMessagesTotalSize == UdpConstants.Defaults.DefaultMaxPendingMessagesTotalSize ? UdpConstants.Defaults.MaxPendingMessagesTotalSize : maxPendingMessagesTotalSize;
System\ServiceModel\Channels\UdpChannelListener.cs (2)
103return UdpConstants.Defaults.ReceiveTimeout; 111return UdpConstants.Defaults.SendTimeout;
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(this.delayLowerBound, UdpConstants.Defaults.DelayLowerBoundTimeSpan); 181return !TimeSpansEqual(this.delayUpperBound, UdpConstants.Defaults.DelayUpperBoundTimeSpan); 186return !TimeSpansEqual(this.maxDelayPerRetransmission, UdpConstants.Defaults.MaxDelayPerRetransmissionTimeSpan);
System\ServiceModel\Channels\UdpTransportBindingElement.cs (10)
33this.duplicateMessageHistoryLength = UdpConstants.Defaults.DuplicateMessageHistoryLength; 34this.maxPendingMessagesTotalSize = UdpConstants.Defaults.DefaultMaxPendingMessagesTotalSize; 37this.socketReceiveBufferSize = UdpConstants.Defaults.SocketReceiveBufferSize; 38this.timeToLive = UdpConstants.Defaults.TimeToLive; 52[DefaultValue(UdpConstants.Defaults.DuplicateMessageHistoryLength)] 68[DefaultValue(UdpConstants.Defaults.DefaultMaxPendingMessagesTotalSize)] 89[DefaultValue(UdpConstants.Defaults.MulticastInterfaceId)] 114[DefaultValue(UdpConstants.Defaults.SocketReceiveBufferSize)] 131[DefaultValue(UdpConstants.Defaults.TimeToLive)] 294this.DuplicateMessageHistoryLength = UdpConstants.Defaults.DuplicateMessageHistoryLengthWithRetransmission;
System\ServiceModel\Channels\UdpUtility.cs (5)
45factory = UdpConstants.Defaults.MessageEncoderFactory; 104return CreateListenSocket(ipAddress, ref port, receiveBufferSize, timeToLive, UdpConstants.Defaults.InterfaceIndex, false, false); 458if (interfaceIndex != UdpConstants.Defaults.InterfaceIndex) 497IPv6MulticastOption multicastGroup = (interfaceIndex == UdpConstants.Defaults.InterfaceIndex ? 506MulticastOption multicastGroup = (interfaceIndex == UdpConstants.Defaults.InterfaceIndex ?
System\ServiceModel\Configuration\UdpBindingElement.cs (7)
31[ConfigurationProperty(UdpTransportConfigurationStrings.DuplicateMessageHistoryLength, DefaultValue = UdpConstants.Defaults.DuplicateMessageHistoryLength)] 47[ConfigurationProperty(UdpTransportConfigurationStrings.MaxRetransmitCount, DefaultValue = UdpConstants.Defaults.MaxRetransmitCount)] 55[ConfigurationProperty(UdpTransportConfigurationStrings.MaxPendingMessagesTotalSize, DefaultValue = UdpConstants.Defaults.DefaultMaxPendingMessagesTotalSize)] 64[ConfigurationProperty(UdpTransportConfigurationStrings.MaxReceivedMessageSize, DefaultValue = UdpConstants.Defaults.MaxReceivedMessageSize)] 72[ConfigurationProperty(UdpTransportConfigurationStrings.MulticastInterfaceId, DefaultValue = UdpConstants.Defaults.MulticastInterfaceId)] 86[ConfigurationProperty(UdpTransportConfigurationStrings.TextEncoding, DefaultValue = UdpConstants.Defaults.EncodingString)] 95[ConfigurationProperty(UdpTransportConfigurationStrings.TimeToLive, DefaultValue = UdpConstants.Defaults.TimeToLive)]
System\ServiceModel\Configuration\UdpRetransmissionSettingsElement.cs (5)
41[ConfigurationProperty(UdpTransportConfigurationStrings.DelayLowerBound, DefaultValue = UdpConstants.Defaults.DelayLowerBound)] 50[ConfigurationProperty(UdpTransportConfigurationStrings.DelayUpperBound, DefaultValue = UdpConstants.Defaults.DelayUpperBound)] 59[ConfigurationProperty(UdpTransportConfigurationStrings.MaxDelayPerRetransmission, DefaultValue = UdpConstants.Defaults.MaxDelayPerRetransmission)] 68[ConfigurationProperty(UdpTransportConfigurationStrings.MaxMulticastRetransmitCount, DefaultValue = UdpConstants.Defaults.MaxMulticastRetransmitCount)] 76[ConfigurationProperty(UdpTransportConfigurationStrings.MaxUnicastRetransmitCount, DefaultValue = UdpConstants.Defaults.MaxUnicastRetransmitCount)]
System\ServiceModel\Configuration\UdpTransportElement.cs (5)
58[ConfigurationProperty(UdpTransportConfigurationStrings.DuplicateMessageHistoryLength, DefaultValue = UdpConstants.Defaults.DuplicateMessageHistoryLength)] 66[ConfigurationProperty(UdpTransportConfigurationStrings.MaxPendingMessagesTotalSize, DefaultValue = UdpConstants.Defaults.DefaultMaxPendingMessagesTotalSize)] 74[ConfigurationProperty(UdpTransportConfigurationStrings.MulticastInterfaceId, DefaultValue = UdpConstants.Defaults.MulticastInterfaceId)] 82[ConfigurationProperty(UdpTransportConfigurationStrings.SocketReceiveBufferSize, DefaultValue = UdpConstants.Defaults.SocketReceiveBufferSize)] 90[ConfigurationProperty(UdpTransportConfigurationStrings.TimeToLive, DefaultValue = UdpConstants.Defaults.TimeToLive)]
System\ServiceModel\UdpBinding.cs (6)
61[DefaultValue(UdpConstants.Defaults.DuplicateMessageHistoryLength)] 87[DefaultValue(UdpConstants.Defaults.MaxRetransmitCount)] 101[DefaultValue(UdpConstants.Defaults.DefaultMaxPendingMessagesTotalSize)] 114[DefaultValue(UdpConstants.Defaults.MaxReceivedMessageSize)] 127[DefaultValue(UdpConstants.Defaults.MulticastInterfaceId)] 154[DefaultValue(UdpConstants.Defaults.TimeToLive)]