33 references to UdpConstants
dotnet-svcutil-lib (33)
FrameworkFork\System.ServiceModel\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(_delayLowerBound,
UdpConstants
.Defaults.DelayLowerBoundTimeSpan);
181
return !TimeSpansEqual(_delayUpperBound,
UdpConstants
.Defaults.DelayUpperBoundTimeSpan);
186
return !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)]
78
const long min =
UdpConstants
.MinPendingMessagesTotalSize;
89
[DefaultValue(
UdpConstants
.Defaults.MulticastInterfaceId)]
111
get { return
UdpConstants
.Scheme; }
114
[DefaultValue(
UdpConstants
.Defaults.SocketReceiveBufferSize)]
120
if (value <
UdpConstants
.MinReceiveBufferSize)
123
string.Format(SRServiceModel.ArgumentOutOfMinRange,
UdpConstants
.MinReceiveBufferSize));
130
[DefaultValue(
UdpConstants
.Defaults.TimeToLive)]
136
if (value <
UdpConstants
.MinTimeToLive || value >
UdpConstants
.MaxTimeToLive)
206
if (assertion.LocalName.Equals(
UdpConstants
.RetransmissionEnabled, StringComparison.Ordinal))
208
this.DuplicateMessageHistoryLength =
UdpConstants
.Defaults.DuplicateMessageHistoryLengthWithRetransmission;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UdpTransportImporter.cs (2)
33
if (!string.IsNullOrEmpty(transportUri) && transportUri.Equals(
UdpConstants
.WsdlSoapUdpTransportUri, StringComparison.Ordinal))
49
if (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)]