5 implementations of CanBind
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (2)
KestrelServerTests.cs (2)
1026public bool CanBind(EndPoint endpoint) => false; 1036public bool CanBind(EndPoint endpoint) => false;
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (1)
Internal\NamedPipeTransportFactory.cs (1)
68public bool CanBind(EndPoint endpoint)
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
QuicTransportFactory.cs (1)
59public bool CanBind(EndPoint endpoint)
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (1)
SocketTransportFactory.cs (1)
45public bool CanBind(EndPoint endpoint)
1 reference to CanBind
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\TransportManager.cs (1)
95return selector?.CanBind(endPoint) ?? true;