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)
85public KestrelConfigurationLoader Endpoint(string name, Action<EndpointConfiguration> configureOptions)
96public KestrelConfigurationLoader Endpoint(IPAddress address, int port) => Endpoint(address, port, _ => { });
101public KestrelConfigurationLoader Endpoint(IPAddress address, int port, Action<ListenOptions> configure)
111public KestrelConfigurationLoader Endpoint(IPEndPoint endPoint) => Endpoint(endPoint, _ => { });
116public KestrelConfigurationLoader Endpoint(IPEndPoint endPoint, Action<ListenOptions> configure)
133public KestrelConfigurationLoader LocalhostEndpoint(int port) => LocalhostEndpoint(port, options => { });
139public KestrelConfigurationLoader LocalhostEndpoint(int port, Action<ListenOptions> configure)
154public KestrelConfigurationLoader AnyIPEndpoint(int port) => AnyIPEndpoint(port, options => { });
159public KestrelConfigurationLoader AnyIPEndpoint(int port, Action<ListenOptions> configure)
174public KestrelConfigurationLoader UnixSocketEndpoint(string socketPath) => UnixSocketEndpoint(socketPath, _ => { });
179public KestrelConfigurationLoader UnixSocketEndpoint(string socketPath, Action<ListenOptions> configure)
199public KestrelConfigurationLoader NamedPipeEndpoint(string pipeName) => NamedPipeEndpoint(pipeName, _ => { });
204public KestrelConfigurationLoader NamedPipeEndpoint(string pipeName, Action<ListenOptions> configure)
220public KestrelConfigurationLoader HandleEndpoint(ulong handle) => HandleEndpoint(handle, _ => { });
225public KestrelConfigurationLoader HandleEndpoint(ulong handle, Action<ListenOptions> configure)
Microsoft.AspNetCore.Server.Kestrel.Tests (6)