6 references to IConnectionListener
Microsoft.AspNetCore.Connections.Abstractions (3)
IConnectionListenerFactory.cs (3)
16
/// Creates an <see cref="
IConnectionListener
"/> bound to the specified <see cref="EndPoint"/>.
20
/// <returns>A <see cref="ValueTask{IConnectionListener}"/> that completes when the listener has been bound, yielding a <see cref="
IConnectionListener
" /> representing the new listener.</returns>
21
ValueTask<
IConnectionListener
> BindAsync(EndPoint endpoint, CancellationToken cancellationToken = default);
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\Infrastructure\TransportManager.cs (3)
47
var
transport = await transportFactory.BindAsync(endPoint, cancellationToken).ConfigureAwait(false);
198
private readonly
IConnectionListener
_connectionListener;
200
public GenericConnectionListener(
IConnectionListener
connectionListener)