2 implementations of BindAsync
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (1)
Internal\NamedPipeTransportFactory.cs (1)
35public ValueTask<IConnectionListener> BindAsync(EndPoint endpoint, CancellationToken cancellationToken = default)
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (1)
SocketTransportFactory.cs (1)
37public ValueTask<IConnectionListener> BindAsync(EndPoint endpoint, CancellationToken cancellationToken = default)
1 reference to BindAsync
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\TransportManager.cs (1)
47var transport = await transportFactory.BindAsync(endPoint, cancellationToken).ConfigureAwait(false);