1 implementation of ISslStreamFeature
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\TlsConnectionFeature.cs (1)
14
internal sealed class TlsConnectionFeature : ITlsConnectionFeature, ITlsApplicationProtocolFeature, ITlsHandshakeFeature,
ISslStreamFeature
5 references to ISslStreamFeature
InMemory.FunctionalTests (2)
HttpsConnectionMiddlewareTests.cs (2)
114
var
feature = context.Features.Get<
ISslStreamFeature
>();
Interop.FunctionalTests (1)
Http2\Http2RequestTests.cs (1)
100
protocolTcs.SetResult(c.Features.Get<
ISslStreamFeature
>().SslStream.SslProtocol);
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Features\ISslStreamFeature.cs (1)
16
/// Note that <see cref="
ISslStreamFeature
"/> will not be available for non-TLS connections or HTTP/3.
Middleware\HttpsConnectionMiddleware.cs (1)
154
context.Features.Set<
ISslStreamFeature
>(feature);