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