1 instantiation of QuicServerConnectionOptions
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
Internal\QuicConnectionListener.cs (1)
86
var connectionOptions = new
QuicServerConnectionOptions
10 references to QuicServerConnectionOptions
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
Internal\QuicConnectionListener.cs (1)
86
var
connectionOptions = new QuicServerConnectionOptions
System.Net.Quic (9)
System\Net\Quic\Internal\MsQuicConfiguration.cs (1)
82
public static MsQuicConfigurationSafeHandle Create(
QuicServerConnectionOptions
options, string? targetHost)
System\Net\Quic\QuicConnection.cs (1)
451
internal ValueTask FinishHandshakeAsync(
QuicServerConnectionOptions
options, string targetHost, CancellationToken cancellationToken = default)
System\Net\Quic\QuicDefaults.cs (3)
7
/// Default values for <see cref="QuicListenerOptions" />, <see cref="QuicClientConnectionOptions" /> and <see cref="
QuicServerConnectionOptions
" />.
24
/// <see cref="
QuicServerConnectionOptions
" />.<see cref="QuicConnectionOptions.MaxInboundBidirectionalStreams" />.
28
/// <see cref="
QuicServerConnectionOptions
" />.<see cref="QuicConnectionOptions.MaxInboundUnidirectionalStreams" />.
System\Net\Quic\QuicListener.cs (3)
94
private readonly Func<QuicConnection, SslClientHelloInfo, CancellationToken, ValueTask<
QuicServerConnectionOptions
>> _connectionOptionsCallback;
171
/// Propagates exceptions from <see cref="QuicListenerOptions.ConnectionOptionsCallback"/>, including validation errors from misconfigured <see cref="
QuicServerConnectionOptions
"/>, e.g. <see cref="ArgumentException"/>.
236
QuicServerConnectionOptions
options = await _connectionOptionsCallback(connection, clientHello, cancellationToken).ConfigureAwait(false);
System\Net\Quic\QuicListenerOptions.cs (1)
37
public Func<QuicConnection, SslClientHelloInfo, CancellationToken, ValueTask<
QuicServerConnectionOptions
>> ConnectionOptionsCallback { get; set; } = null!;