From 8e25adcdb4425fde01b9cdeb7dc2c20480669154 Mon Sep 17 00:00:00 2001 From: James Newton-King Date: Tue, 27 Jul 2021 21:29:20 +1200 Subject: [PATCH] Update --- .../src/Internal/QuicConnectionContext.FeatureCollection.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Servers/Kestrel/Transport.Quic/src/Internal/QuicConnectionContext.FeatureCollection.cs b/src/Servers/Kestrel/Transport.Quic/src/Internal/QuicConnectionContext.FeatureCollection.cs index b54b925e39ad..77acfd7e99d5 100644 --- a/src/Servers/Kestrel/Transport.Quic/src/Internal/QuicConnectionContext.FeatureCollection.cs +++ b/src/Servers/Kestrel/Transport.Quic/src/Internal/QuicConnectionContext.FeatureCollection.cs @@ -13,6 +13,8 @@ internal sealed partial class QuicConnectionContext : IProtocolErrorCodeFeature, { public long Error { get; set; } + // Support accessing client certificate + // https://github.com/dotnet/aspnetcore/issues/34756 public X509Certificate2? ClientCertificate { get => throw new NotSupportedException();