1 implementation of ITlsHandshakeFeature
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\TlsConnectionFeature.cs (1)
15
internal sealed class TlsConnectionFeature : ITlsConnectionFeature, ITlsApplicationProtocolFeature,
ITlsHandshakeFeature
, ISslStreamFeature
5 references to ITlsHandshakeFeature
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http\Http1Connection.cs (1)
1055
if (ConnectionFeatures.Get<
ITlsHandshakeFeature
>() == null)
Internal\Http2\Http2Connection.cs (3)
508
var
tlsFeature = ConnectionFeatures.Get<
ITlsHandshakeFeature
>();
550
if (ConnectionFeatures.Get<
ITlsHandshakeFeature
>() != null)
Middleware\HttpsConnectionMiddleware.cs (1)
163
context.Features.Set<
ITlsHandshakeFeature
>(feature);