2 implementations of EndPoint
InMemory.FunctionalTests (1)
TestTransport\MockMultiplexedConnectionListenerFactory.cs (1)
31public EndPoint EndPoint { get; }
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
Internal\QuicConnectionListener.cs (1)
118public EndPoint EndPoint { get; set; }
4 references to EndPoint
Microsoft.AspNetCore.Connections.Abstractions (1)
IMulitplexedConnectionListener.cs (1)
13/// Defines an interface that represents a listener bound to a specific <see cref="EndPoint"/>.
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Infrastructure\TransportManager.cs (2)
84return transport.EndPoint; 227public EndPoint EndPoint => _multiplexedConnectionListener.EndPoint;
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (1)
KestrelServerTests.cs (1)
1058mock.Setup(m => m.EndPoint).Returns(resolvedEndPoint);