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