50 references to Defaults
System.ServiceModel.Channels (50)
System\ServiceModel\Channels\UdpChannelBase.cs (2)
52
this.maxPendingMessagesTotalSize = maxPendingMessagesTotalSize == UdpConstants.
Defaults
.DefaultMaxPendingMessagesTotalSize ? UdpConstants.
Defaults
.MaxPendingMessagesTotalSize : maxPendingMessagesTotalSize;
System\ServiceModel\Channels\UdpChannelListener.cs (2)
103
return UdpConstants.
Defaults
.ReceiveTimeout;
111
return UdpConstants.
Defaults
.SendTimeout;
System\ServiceModel\Channels\UdpRetransmissionSettings.cs (8)
31
UdpConstants.
Defaults
.DelayLowerBoundTimeSpan, UdpConstants.
Defaults
.DelayUpperBoundTimeSpan, UdpConstants.
Defaults
.MaxDelayPerRetransmissionTimeSpan)
84
[DefaultValue(UdpConstants.
Defaults
.MaxUnicastRetransmitCount)]
102
[DefaultValue(UdpConstants.
Defaults
.MaxMulticastRetransmitCount)]
176
return !TimeSpansEqual(this.delayLowerBound, UdpConstants.
Defaults
.DelayLowerBoundTimeSpan);
181
return !TimeSpansEqual(this.delayUpperBound, UdpConstants.
Defaults
.DelayUpperBoundTimeSpan);
186
return !TimeSpansEqual(this.maxDelayPerRetransmission, UdpConstants.
Defaults
.MaxDelayPerRetransmissionTimeSpan);
System\ServiceModel\Channels\UdpTransportBindingElement.cs (10)
33
this.duplicateMessageHistoryLength = UdpConstants.
Defaults
.DuplicateMessageHistoryLength;
34
this.maxPendingMessagesTotalSize = UdpConstants.
Defaults
.DefaultMaxPendingMessagesTotalSize;
37
this.socketReceiveBufferSize = UdpConstants.
Defaults
.SocketReceiveBufferSize;
38
this.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)]
294
this.DuplicateMessageHistoryLength = UdpConstants.
Defaults
.DuplicateMessageHistoryLengthWithRetransmission;
System\ServiceModel\Channels\UdpUtility.cs (5)
45
factory = UdpConstants.
Defaults
.MessageEncoderFactory;
104
return CreateListenSocket(ipAddress, ref port, receiveBufferSize, timeToLive, UdpConstants.
Defaults
.InterfaceIndex, false, false);
458
if (interfaceIndex != UdpConstants.
Defaults
.InterfaceIndex)
497
IPv6MulticastOption multicastGroup = (interfaceIndex == UdpConstants.
Defaults
.InterfaceIndex ?
506
MulticastOption 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)]