8 references to SslClientHelloInfo
Http3SampleApp (1)
Program.cs (1)
84
ServerOptionsSelectionCallback callback = (SslStream stream,
SslClientHelloInfo
clientHelloInfo, object state, CancellationToken cancellationToken) =>
InMemory.FunctionalTests (2)
HttpsConnectionMiddlewareTests.cs (1)
667
listenOptions.UseHttps((SslStream stream,
SslClientHelloInfo
clientHelloInfo, object state, CancellationToken cancellationToken) =>
HttpsTests.cs (1)
604
listenOptions.UseHttps((SslStream stream,
SslClientHelloInfo
clientHelloInfo, object state, CancellationToken cancellationToken) =>
Microsoft.AspNetCore.Connections.Abstractions (1)
TlsConnectionCallbackContext.cs (1)
20
public
SslClientHelloInfo
ClientHelloInfo { get; set; }
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Middleware\HttpsConnectionMiddleware.cs (1)
452
private static async ValueTask<SslServerAuthenticationOptions> ServerOptionsCallback(SslStream sslStream,
SslClientHelloInfo
clientHelloInfo, object? state, CancellationToken cancellationToken)
TlsHandshakeCallbackContext.cs (1)
25
public
SslClientHelloInfo
ClientHelloInfo { get; internal set; }
System.Net.Quic (1)
artifacts\obj\System.Net.Quic\Debug\net10.0\System.Net.Quic.notsupported.cs (1)
89
public System.Func<System.Net.Quic.QuicConnection, System.Net.Security.
SslClientHelloInfo
, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Net.Quic.QuicServerConnectionOptions>> ConnectionOptionsCallback { get { throw new System.PlatformNotSupportedException(System.SR.SystemNetQuic_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemNetQuic_PlatformNotSupported); } }
System.Net.Security (1)
artifacts\obj\System.Net.Security\Debug\net10.0\System.Net.Security.notsupported.cs (1)
176
public delegate System.Threading.Tasks.ValueTask<System.Net.Security.SslServerAuthenticationOptions> ServerOptionsSelectionCallback(System.Net.Security.SslStream stream, System.Net.Security.
SslClientHelloInfo
clientHelloInfo, object? state, System.Threading.CancellationToken cancellationToken);