Add named pipes methods to Kestrel configuration loader #56565
Closed
Description
Background and Motivation
Named pipes were added in .NET 8. APIs for named pipes were added across Kestrel, but they were missed on KestrelConfigurationLoader
. This proposal closes that gap.
Proposed API
namespace Microsoft.AspNetCore.Server.Kestrel;
public class KestrelConfigurationLoader
{
+ public KestrelConfigurationLoader NamedPipeEndpoint(string pipeName);
+ public KestrelConfigurationLoader NamedPipeEndpoint(string pipeName, Action<ListenOptions> configure);
}