24 references to OSSupportsIPv6
SMSvcHost (1)
System\ServiceModel\Activation\TransportListener.cs (1)
52if (Socket.OSSupportsIPv6)
System (15)
net\System\Net\_AutoWebProxyScriptHelper.cs (1)
87 else if(Socket.OSSupportsIPv6)
net\System\Net\DNS.cs (1)
1142(pAddressInfo->ai_family == AddressFamily.InterNetworkV6 && Socket.OSSupportsIPv6))
net\System\Net\Internal.cs (2)
563if(Socket.OSSupportsIPv6){ 600if(Socket.OSSupportsIPv6 && (startIPOptions & StartIPOptions.StartIPv6) !=0){
net\System\Net\IPAddress.cs (2)
187if(Socket.OSSupportsIPv6) 435if(Socket.OSSupportsIPv6)
net\System\Net\NetworkInformation\NetworkAddressChange.cs (2)
264if(Socket.OSSupportsIPv6){ 314if(Socket.OSSupportsIPv6 && (startIPOptions & StartIPOptions.StartIPv6) !=0){
net\System\Net\NetworkInformation\ping.cs (1)
749else if ((ip.AddressFamily == AddressFamily.InterNetworkV6 && !Socket.OSSupportsIPv6))
net\System\Net\NetworkInformation\SystemIPGlobalProperties.cs (2)
200if (Socket.OSSupportsIPv6) { 305if (Socket.OSSupportsIPv6) {
net\System\Net\ServicePoint.cs (1)
249if ( Socket.OSSupportsIPv6 ) {
net\System\Net\Sockets\_MultipleConnectAsync.cs (1)
429if (Socket.OSSupportsIPv6)
net\System\Net\Sockets\TCPClient.cs (1)
224if (Socket.OSSupportsIPv6){
net\System\Net\Sockets\UDPClient.cs (1)
341if (Socket.OSSupportsIPv6){
System.Runtime.Remoting (1)
channels\core\socketcache.cs (1)
109connectIPv6 = Socket.OSSupportsIPv6 && HasIPv6Address(_addressList);
System.ServiceModel (5)
System\ServiceModel\Channels\ExclusiveTcpTransportManager.cs (1)
253bool useIPv6 = (this.ListenUri.HostNameType != UriHostNameType.IPv4) && Socket.OSSupportsIPv6;
System\ServiceModel\Channels\PeerIPHelper.cs (1)
443if (Socket.OSSupportsIPv6)
System\ServiceModel\Channels\SocketConnection.cs (2)
1712if (addressFamily == AddressFamily.InterNetworkV6 && !Socket.OSSupportsIPv6) 1867if (addressFamily == AddressFamily.InterNetworkV6 && !Socket.OSSupportsIPv6)
System\ServiceModel\Channels\TcpChannelListener.cs (1)
334bool useIPv6 = Socket.OSSupportsIPv6;
System.ServiceModel.Channels (2)
System\ServiceModel\Channels\UdpUtility.cs (2)
74ipV6Supported = Socket.OSSupportsIPv6; 237ThrowIfNoSocketSupport(Socket.OSSupportsIPv4, Socket.OSSupportsIPv6);