5 instantiations of LocalhostListenOptions
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\AddressBinder.cs (2)
131options = prefix is null ? new LocalhostListenOptions(parsedAddress.Port) : new LocalhostListenOptions(parsedAddress.Port, prefix);
KestrelServerOptions.cs (1)
547var listenOptions = new LocalhostListenOptions(port);
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (2)
ListenOptionsTests.cs (2)
25var localhostListenOptions = new LocalhostListenOptions(1004); 53var localhostListenOptions = new LocalhostListenOptions(1004);
5 references to LocalhostListenOptions
Microsoft.AspNetCore.Server.Kestrel.Core (1)
KestrelServerOptions.cs (1)
547var listenOptions = new LocalhostListenOptions(port);
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (4)
AddressBinderTests.cs (2)
69Assert.IsType<LocalhostListenOptions>(listenOptions); 87Assert.IsType<LocalhostListenOptions>(listenOptions);
ListenOptionsTests.cs (2)
25var localhostListenOptions = new LocalhostListenOptions(1004); 53var localhostListenOptions = new LocalhostListenOptions(1004);