36 references to DnsSafeHost
SMSvcHost (2)
System\ServiceModel\Activation\RoutingTable.cs (2)
140IPAddress foundAddress = IPAddress.Parse(found.Uri.DnsSafeHost); 201address = IPAddress.Parse(path.DnsSafeHost);
System (10)
net\System\Net\HttpWebRequest.cs (2)
4719hostToUse = "[" + TrimScopeID(sourceUri.DnsSafeHost) + "]"; 4721hostToUse = forcePunycode ? sourceUri.IdnHost : sourceUri.DnsSafeHost;
net\System\Net\ServicePoint.cs (2)
109if (Logging.On) Logging.Enter(Logging.Web, this, "ServicePoint", address.DnsSafeHost + ":" + address.Port); 114m_Host = address.DnsSafeHost;
net\System\Net\ServicePointManager.cs (2)
630return address.Scheme + "://" + address.DnsSafeHost; 632return address.Scheme + "://" + address.DnsSafeHost + ":" + address.Port.ToString();
net\System\URI.cs (4)
1300string host = this.DnsSafeHost; 5080+ '[' + basePart.DnsSafeHost + ']' 5147left = @"\\[" + basePart.DnsSafeHost + ']'; 5151+ '[' + basePart.DnsSafeHost + ']'
System.Runtime.Remoting (2)
channels\core\socketcache.cs (1)
108_addressList = Dns.GetHostAddresses(_uri.DnsSafeHost);
channels\tcp\tcpclientchannel.cs (1)
375m_machineName = "[" + uri.DnsSafeHost + "]";
System.ServiceModel (16)
System\ServiceModel\Channels\DnsCache.cs (1)
65string hostName = uri.DnsSafeHost;
System\ServiceModel\Channels\ExclusiveTcpTransportManager.cs (1)
34this.ipAddress = IPAddress.Parse(channelListener.Uri.DnsSafeHost);
System\ServiceModel\Channels\HttpChannelListener.cs (2)
749string dnsSafeHostName = listenUri.DnsSafeHost; 763if (listenUri.DnsSafeHost.Contains("."))
System\ServiceModel\Channels\SharedHttpTransportManager.cs (1)
519host = string.Concat("[", ListenUri.DnsSafeHost, "]");
System\ServiceModel\Channels\SocketConnection.cs (1)
1633IPAddress ipAddress = IPAddress.Parse(uri.DnsSafeHost);
System\ServiceModel\Channels\TcpChannelListener.cs (3)
282string ipv6Host = originalUri.DnsSafeHost; 338ipv6Address = IPAddress.Parse(this.Uri.DnsSafeHost); 343ipv4Address = IPAddress.Parse(this.Uri.DnsSafeHost);
System\ServiceModel\Channels\TcpConnectionPool.cs (1)
42string normalizedHost = via.DnsSafeHost.ToUpperInvariant();
System\ServiceModel\Channels\TransportChannelListener.cs (2)
320IPAddress channelListenerIP = IPAddress.Parse(this.Uri.DnsSafeHost); 321IPAddress otherIP = IPAddress.Parse(uri.DnsSafeHost);
System\ServiceModel\Security\IdentityVerifier.cs (1)
223return EndpointIdentity.CreateDnsIdentity(toAddress.DnsSafeHost);
System\ServiceModel\Security\SecurityUtils.cs (1)
763return string.Format(CultureInfo.InvariantCulture, "host/{0}", target.Uri.DnsSafeHost);
System\ServiceModel\Security\SimpleSecurityTokenProvider.cs (1)
79endpointIdentity = EndpointIdentity.CreateDnsIdentity(targetAddress.Uri.DnsSafeHost);
System\ServiceModel\Security\SpnegoTokenProvider.cs (1)
246spn = "host/" + target.Uri.DnsSafeHost;
System.ServiceModel.Channels (6)
System\ServiceModel\Channels\ServerUdpOutputChannel.cs (3)
127remoteEndPoint = new IPEndPoint(IPAddress.Parse(destination.DnsSafeHost), destination.Port); 141exceptionToBeThrown = new InvalidOperationException(SR.RemoteAddressUnreachableDueToIPVersionMismatch(destination.DnsSafeHost)); 180exceptionToBeThrown = new InvalidOperationException(SR.RemoteAddressUnreachableDueToIPVersionMismatch(destination.DnsSafeHost));
System\ServiceModel\Channels\UdpChannelFactory.cs (2)
166IPAddress address = IPAddress.Parse(via.DnsSafeHost); 180throw FxTrace.Exception.AsError(new EndpointNotFoundException(SR.DnsResolveFailed(via.DnsSafeHost)));
System\ServiceModel\Channels\UdpChannelListener.cs (1)
537IPAddress address = IPAddress.Parse(this.listenUri.DnsSafeHost);