1 implementation of Exception
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\TlsConnectionFeature.cs (1)
109public Exception? Exception { get; set; }
5 references to Exception
InMemory.FunctionalTests (4)
HttpsConnectionMiddlewareTests.cs (4)
243Assert.NotNull(handshakeFeature.Exception); 277Assert.IsAssignableFrom<OperationCanceledException>(handshakeFeature.Exception); 295Assert.Null(capturedFeature.Exception); 339Assert.Null(handshakeFeature.Exception);
Kestrel.SampleApp (1)
Startup.cs (1)
113if (tlsHandshakeFeature?.Exception is { } ex)