10 references to HttpSysOptions
Microsoft.AspNetCore.Server.HttpSys (10)
HttpSysListener.cs (2)
48public HttpSysListener(HttpSysOptions options, IMemoryPoolFactory<byte> memoryPoolFactory, ILoggerFactory loggerFactory) 106public HttpSysOptions Options { get; }
HttpSysOptions.cs (1)
34/// Initializes a new <see cref="HttpSysOptions"/>.
MessagePump.cs (2)
20private readonly HttpSysOptions _options; 37public MessagePump(IOptions<HttpSysOptions> options, IMemoryPoolFactory<byte> memoryPoolFactory,
MessagePump.Log.cs (2)
32$"Overriding address(es) '{{ServerAddresses}}'. Binding to endpoints added to {nameof(HttpSysOptions.UrlPrefixes)} instead.", 46$"Overriding endpoints added to {nameof(HttpSysOptions.UrlPrefixes)} since {nameof(IServerAddressesFeature.PreferHostingUrls)} is set to true. Binding to address(es) '{{ServerAddresses}}' instead.",
WebHostBuilderHttpSysExtensions.cs (3)
42var options = services.GetRequiredService<IOptions<HttpSysOptions>>().Value; 68public static IWebHostBuilder UseHttpSys(this IWebHostBuilder hostBuilder, Action<HttpSysOptions> options)