5 writes to HandshakeTimeout
InMemory.FunctionalTests (1)
HttpsTests.cs (1)
377o.HandshakeTimeout = TimeSpan.FromMilliseconds(100);
Microsoft.AspNetCore.Server.Kestrel.Core (1)
HttpsConnectionAdapterOptions.cs (1)
27HandshakeTimeout = DefaultHandshakeTimeout;
Microsoft.AspNetCore.Server.Kestrel.Tests (3)
HttpsConnectionAdapterOptionsTest.cs (3)
24Assert.Equal(value, new HttpsConnectionAdapterOptions { HandshakeTimeout = value }.HandshakeTimeout); 30Assert.Equal(TimeSpan.MaxValue, new HttpsConnectionAdapterOptions { HandshakeTimeout = Timeout.InfiniteTimeSpan }.HandshakeTimeout); 37var exception = Assert.Throws<ArgumentOutOfRangeException>(() => new HttpsConnectionAdapterOptions { HandshakeTimeout = value });
5 references to HandshakeTimeout
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Middleware\HttpsConnectionMiddleware.cs (1)
68_handshakeTimeout = options.HandshakeTimeout;
TlsConfigurationLoader.cs (1)
117HandshakeTimeout = httpsOptions.HandshakeTimeout,
Microsoft.AspNetCore.Server.Kestrel.Tests (3)
HttpsConnectionAdapterOptionsTest.cs (3)
17Assert.Equal(TimeSpan.FromSeconds(10), new HttpsConnectionAdapterOptions().HandshakeTimeout); 24Assert.Equal(value, new HttpsConnectionAdapterOptions { HandshakeTimeout = value }.HandshakeTimeout); 30Assert.Equal(TimeSpan.MaxValue, new HttpsConnectionAdapterOptions { HandshakeTimeout = Timeout.InfiniteTimeSpan }.HandshakeTimeout);