3 implementations of UnbindAsync
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (1)
Connection\DirectTlsConnectionListener.cs (1)
240public ValueTask UnbindAsync(CancellationToken cancellationToken = default)
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (1)
Internal\NamedPipeConnectionListener.cs (1)
161public ValueTask UnbindAsync(CancellationToken cancellationToken = default) => DisposeAsync();
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (1)
SocketConnectionListener.cs (1)
95public ValueTask UnbindAsync(CancellationToken cancellationToken = default)
1 reference to UnbindAsync
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\TransportManager.cs (1)
211=> _connectionListener.UnbindAsync(cancellationToken);