20 references to GetNextSSLPort
IIS.FunctionalTests (4)
Http2TrailersResetTests.cs (1)
36var port = TestPortHelper.GetNextSSLPort();
Http3Tests.cs (1)
35var port = TestPortHelper.GetNextSSLPort();
src\Servers\IIS\IIS\test\Common.FunctionalTests\Http2Tests.cs (1)
46var port = TestPortHelper.GetNextSSLPort();
src\Servers\IIS\IIS\test\Common.FunctionalTests\HttpsTests.cs (1)
68var port = TestPortHelper.GetNextSSLPort();
IIS.LongTests (3)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (3)
1306var port = TestPortHelper.GetNextSSLPort(); 1336.SetAttributeValue("bindingInformation", $":{TestPortHelper.GetNextSSLPort()}:localhost"); 1352var port = TestPortHelper.GetNextSSLPort();
IIS.NewHandler.FunctionalTests (3)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (3)
1306var port = TestPortHelper.GetNextSSLPort(); 1336.SetAttributeValue("bindingInformation", $":{TestPortHelper.GetNextSSLPort()}:localhost"); 1352var port = TestPortHelper.GetNextSSLPort();
IIS.NewShim.FunctionalTests (3)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (3)
1306var port = TestPortHelper.GetNextSSLPort(); 1336.SetAttributeValue("bindingInformation", $":{TestPortHelper.GetNextSSLPort()}:localhost"); 1352var port = TestPortHelper.GetNextSSLPort();
IIS.Tests (1)
Utilities\TestServer.cs (1)
105_currentPort = _isHttps ? TestPortHelper.GetNextSSLPort() : TestPortHelper.GetNextPort();
IISExpress.FunctionalTests (5)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Http2Tests.cs (1)
46var port = TestPortHelper.GetNextSSLPort();
src\Servers\IIS\IIS\test\Common.FunctionalTests\HttpsTests.cs (1)
68var port = TestPortHelper.GetNextSSLPort();
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (3)
1306var port = TestPortHelper.GetNextSSLPort(); 1336.SetAttributeValue("bindingInformation", $":{TestPortHelper.GetNextSSLPort()}:localhost"); 1352var port = TestPortHelper.GetNextSSLPort();
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (1)
IISExpressDeployer.cs (1)
164port = (uri.Scheme == "https") ? TestPortHelper.GetNextSSLPort() : TestPortHelper.GetNextPort();