7 writes to IsTls
InMemory.FunctionalTests (3)
ResponseTests.cs (3)
4601IsTls = true 4638IsTls = true 4700IsTls = true
Microsoft.AspNetCore.Server.Kestrel.Core (3)
ListenOptions.cs (1)
242IsTls = IsTls,
ListenOptionsHttpsExtensions.cs (2)
197listenOptions.IsTls = true; 260listenOptions.IsTls = true;
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (1)
AddressBinderTests.cs (1)
94listenOptions.IsTls = true;
14 references to IsTls
Microsoft.AspNetCore.Server.Kestrel.Core (7)
Internal\AddressBinder.cs (1)
264if (https && !options.IsTls)
Internal\KestrelServerImpl.cs (1)
144var hasTls = options.IsTls;
KestrelServerOptions.cs (2)
370writer.WritePropertyName(nameof(listenOptions.IsTls)); 371writer.WriteBooleanValue(listenOptions.IsTls);
ListenOptions.cs (2)
138return IsTls ? HttpProtocol.SchemeHttps : HttpProtocol.SchemeHttp; 242IsTls = IsTls,
TlsConfigurationLoader.cs (1)
97if (listenOptions.IsTls)
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (2)
AddressBinderTests.cs (1)
338Assert.Contains(endpoints, e => e.IPEndPoint.Port == 5000 && !e.IsTls);
KestrelServerTests.cs (1)
74Assert.True(server.Options.OptionsInUse[0].IsTls);
Microsoft.AspNetCore.Server.Kestrel.Tests (5)
KestrelConfigurationLoaderTests.cs (5)
195Assert.True(serverOptions.ConfigurationBackedListenOptions[0].IsTls); 196Assert.False(serverOptions.CodeBackedListenOptions[0].IsTls); 223Assert.True(serverOptions.ConfigurationBackedListenOptions[0].IsTls); 264Assert.True(serverOptions.ConfigurationBackedListenOptions[0].IsTls); 265Assert.True(serverOptions.CodeBackedListenOptions[0].IsTls);