2 implementations of Use
Microsoft.AspNetCore.Connections.Abstractions (1)
MultiplexedConnectionBuilder.cs (1)
31public IMultiplexedConnectionBuilder Use(Func<MultiplexedConnectionDelegate, MultiplexedConnectionDelegate> middleware)
Microsoft.AspNetCore.Server.Kestrel.Core (1)
ListenOptions.cs (1)
180IMultiplexedConnectionBuilder IMultiplexedConnectionBuilder.Use(Func<MultiplexedConnectionDelegate, MultiplexedConnectionDelegate> middleware)
4 references to Use
Interop.FunctionalTests (2)
Http3\Http3RequestTests.cs (2)
1565multiplexedConnectionBuilder.Use(next => 1734multiplexedConnectionBuilder.Use(next =>
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Middleware\HttpConnectionBuilderExtensions.cs (1)
23return builder.Use(next =>
Middleware\ListenOptionsConnectionLoggingExtensions.cs (1)
42multiplexedConnectionBuilder.Use(next => new LoggingMultiplexedConnectionMiddleware(next, logger).OnConnectionAsync);