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