12 references to Host
Aspire.StackExchange.Redis (1)
src\Vendoring\OpenTelemetry.Instrumentation.StackExchangeRedis\Implementation\RedisProfilerEntryToActivityConverter.cs (1)
148activity.SetTag(SemanticConventions.AttributeNetPeerName, dnsEndPoint.Host);
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (1)
RedisDependencyInjectionExtensionsTests.cs (1)
35Assert.Equal(host, dnsEndpoint.Host);
Microsoft.Extensions.ServiceDiscovery (1)
Http\ResolvingHttpDelegatingHandler.cs (1)
94host = dns.Host;
Microsoft.Extensions.ServiceDiscovery.Abstractions (2)
Internal\ServiceEndpointImpl.cs (2)
19DnsEndPoint dns when dns.Port == 0 => $"{dns.Host}", 20DnsEndPoint dns => $"{dns.Host}:{dns.Port}",
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\ConnectHelper.cs (1)
135throw CreateWrappedException(ex, endPoint.Host, endPoint.Port, cancellationToken);
System.Net.Quic (2)
System\Net\Quic\Internal\MsQuicHelpers.cs (2)
19host = IPAddress.TryParse(dnsEndPoint.Host, out address) ? null : dnsEndPoint.Host;
System.Net.Requests (2)
System\Net\HttpWebRequest.cs (2)
1765await Dns.GetHostAddressesAsync(context.DnsEndPoint.Host, cancellationToken).ConfigureAwait(false) : 1766Dns.GetHostAddresses(context.DnsEndPoint.Host);
System.Net.Sockets (2)
System\Net\Sockets\Socket.cs (1)
863Connect(dnsEP.Host, dnsEP.Port);
System\Net\Sockets\SocketAsyncEventArgs.cs (1)
690Task<IPAddress[]> addressesTask = Dns.GetHostAddressesAsync(endPoint.Host, endPoint.AddressFamily, cancellationToken);