4 implementations of EndPoint
InMemory.FunctionalTests (1)
TestTransport\InMemoryTransportFactory.cs (1)
17public EndPoint EndPoint { get; set; }
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (1)
InMemoryTransportBenchmark.cs (1)
144public EndPoint EndPoint { get; }
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (1)
Internal\NamedPipeConnectionListener.cs (1)
99public EndPoint EndPoint => _endpoint;
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (1)
SocketConnectionListener.cs (1)
20public EndPoint EndPoint { get; private set; }
11 references to EndPoint
Microsoft.AspNetCore.Connections.Abstractions (1)
IConnectionListener.cs (1)
12/// 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)
50return transport.EndPoint; 206public EndPoint EndPoint => _connectionListener.EndPoint;
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (8)
KestrelServerTests.cs (8)
566.Setup(transport => transport.EndPoint).Returns(e); 624.Setup(transport => transport.EndPoint).Returns(e); 679.Setup(transport => transport.EndPoint).Returns(e); 813.Setup(transport => transport.EndPoint) 856if (((IPEndPoint)mockTransport.Object.EndPoint).Port == 5001) 887var port = ((IPEndPoint)mockTransport.Object.EndPoint).Port; 951.Setup(transport => transport.EndPoint) 1006mock.Setup(m => m.EndPoint).Returns(resolvedEndPoint);