10 references to EndPointType
System (10)
net\System\Net\SocketPermission.cs (10)
750if (CheckEndPointName(epname) == EndPointType.Invalid) { 795return CheckEndPointName(hostname) == EndPointType.DnsOrWildcard; 1205private static EndPointType CheckEndPointName(string name) { 1207return EndPointType.Invalid; 1239return EndPointType.Invalid; 1248return isIPv6 ? (isDnsOrWC? EndPointType.Invalid: EndPointType.IPv6) 1249: (isDnsOrWC? EndPointType.DnsOrWildcard : 1250isHexLetter? EndPointType.DnsOrWildcard :EndPointType.IPv4);