2 instantiations of TlsHandshakeCallbackContext
Microsoft.AspNetCore.Server.Kestrel.Core (2)
HttpsConfigurationService.cs (1)
165return listenOptions.HttpsCallbackOptions.OnConnection(new TlsHandshakeCallbackContext
Middleware\HttpsConnectionMiddleware.cs (1)
445var callbackContext = new TlsHandshakeCallbackContext
4 references to TlsHandshakeCallbackContext
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\SniOptionsSelector.cs (1)
179public static ValueTask<SslServerAuthenticationOptions> OptionsCallback(TlsHandshakeCallbackContext callbackContext)
Middleware\HttpsConnectionMiddleware.cs (2)
44private readonly Func<TlsHandshakeCallbackContext, ValueTask<SslServerAuthenticationOptions>>? _tlsCallbackOptions; 445var callbackContext = new TlsHandshakeCallbackContext
TlsHandshakeCallbackOptions.cs (1)
19public Func<TlsHandshakeCallbackContext, ValueTask<SslServerAuthenticationOptions>> OnConnection { get; set; } = default!;