10 references to MinPort
System (4)
net\System\Net\Configuration\SmtpNetworkElement.cs (1)
146
null, new IntegerValidator(IPEndPoint.
MinPort
+1, IPEndPoint.MaxPort), ConfigurationPropertyOptions.None);
net\System\Net\DnsEndPoint.cs (1)
29
if(port < IPEndPoint.
MinPort
|| port > IPEndPoint.MaxPort) {
net\System\Net\Internal.cs (1)
915
return port>=IPEndPoint.
MinPort
&& port<=IPEndPoint.MaxPort;
net\System\Net\IPEndPoint.cs (1)
36
internal const int AnyPort =
MinPort
;
System.Net (2)
net\PeerToPeer\PeerNameRegistration.cs (2)
106
if (port < IPEndPoint.
MinPort
|| port > IPEndPoint.MaxPort)
142
if (value < IPEndPoint.
MinPort
|| value > IPEndPoint.MaxPort)
System.ServiceModel (4)
System\ServiceModel\Channels\PeerHelpers.cs (1)
500
public const int MinPort = IPEndPoint.
MinPort
;
System\ServiceModel\Channels\RemoteEndpointMessageProperty.cs (2)
25
if (port < IPEndPoint.
MinPort
|| port > IPEndPoint.MaxPort)
28
SR.GetString(SR.ValueMustBeInRange, IPEndPoint.
MinPort
, IPEndPoint.MaxPort));
System\ServiceModel\Configuration\DefaultPortElement.cs (1)
38
[IntegerValidator(MinValue = IPEndPoint.
MinPort
, MaxValue = IPEndPoint.MaxPort)]