12 references to Port
Aspire.StackExchange.Redis (1)
src\Vendoring\OpenTelemetry.Instrumentation.StackExchangeRedis\Implementation\RedisProfilerEntryToActivityConverter.cs (1)
149
activity.SetTag(SemanticConventions.AttributeNetPeerPort, dnsEndPoint.
Port
);
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (1)
RedisDependencyInjectionExtensionsTests.cs (1)
36
Assert.Equal(port, dnsEndpoint.
Port
);
Microsoft.Extensions.ServiceDiscovery (1)
Http\ResolvingHttpDelegatingHandler.cs (1)
95
port = dns.
Port
;
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 (1)
System\Net\Quic\Internal\MsQuicHelpers.cs (1)
20
port = dnsEndPoint.
Port
;
System.Net.Requests (3)
System\Net\HttpWebRequest.cs (3)
1782
BindHelper(servicePoint, ref addresses, socket, context.DnsEndPoint.
Port
);
1826
await socket.ConnectAsync(addresses, context.DnsEndPoint.
Port
, cancellationToken).ConfigureAwait(false);
1832
socket.Connect(addresses, context.DnsEndPoint.
Port
);
System.Net.Sockets (2)
System\Net\Sockets\Socket.cs (1)
863
Connect(dnsEP.Host, dnsEP.
Port
);
System\Net\Sockets\SocketAsyncEventArgs.cs (1)
701
_ = Core(internalArgs, addressesTask, endPoint.
Port
, socketType, protocolType, cancellationToken);