We currently do not expose the SNI hostname via a feature interface https://github.com/dotnet/aspnetcore/blob/640b77f0823f9de872359aa174669efbbd742e72/src/Servers/Kestrel/Core/src/Internal/TlsConnectionFeature.cs#L52-L53 ```diff namespace Microsoft.AspNetCore.Http.Features { public interface ITlsHandshakeFeature { + string? HostName { get; } } } ``` Given that it's already a property on the `TlsConnectionFeature` we can trivially expose it.