1 instantiation of KestrelConfigurationLoader
Microsoft.AspNetCore.Server.Kestrel.Core (1)
36 references to KestrelConfigurationLoader
Aspire.Dashboard (1)
InMemory.FunctionalTests (1)
Interop.FunctionalTests (1)
Microsoft.AspNetCore.Server.Kestrel.Core (27)
KestrelConfigurationLoader.cs (15)
83public KestrelConfigurationLoader Endpoint(string name, Action<EndpointConfiguration> configureOptions)
94public KestrelConfigurationLoader Endpoint(IPAddress address, int port) => Endpoint(address, port, _ => { });
99public KestrelConfigurationLoader Endpoint(IPAddress address, int port, Action<ListenOptions> configure)
109public KestrelConfigurationLoader Endpoint(IPEndPoint endPoint) => Endpoint(endPoint, _ => { });
114public KestrelConfigurationLoader Endpoint(IPEndPoint endPoint, Action<ListenOptions> configure)
131public KestrelConfigurationLoader LocalhostEndpoint(int port) => LocalhostEndpoint(port, options => { });
137public KestrelConfigurationLoader LocalhostEndpoint(int port, Action<ListenOptions> configure)
152public KestrelConfigurationLoader AnyIPEndpoint(int port) => AnyIPEndpoint(port, options => { });
157public KestrelConfigurationLoader AnyIPEndpoint(int port, Action<ListenOptions> configure)
172public KestrelConfigurationLoader UnixSocketEndpoint(string socketPath) => UnixSocketEndpoint(socketPath, _ => { });
177public KestrelConfigurationLoader UnixSocketEndpoint(string socketPath, Action<ListenOptions> configure)
197public KestrelConfigurationLoader NamedPipeEndpoint(string pipeName) => NamedPipeEndpoint(pipeName, _ => { });
202public KestrelConfigurationLoader NamedPipeEndpoint(string pipeName, Action<ListenOptions> configure)
218public KestrelConfigurationLoader HandleEndpoint(ulong handle) => HandleEndpoint(handle, _ => { });
223public KestrelConfigurationLoader HandleEndpoint(ulong handle, Action<ListenOptions> configure)
Microsoft.AspNetCore.Server.Kestrel.Tests (6)