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