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