10 references to HttpSysOptions
Microsoft.AspNetCore.Server.HttpSys (10)
HttpSysListener.cs (2)
48
public HttpSysListener(
HttpSysOptions
options, IMemoryPoolFactory<byte> memoryPoolFactory, ILoggerFactory loggerFactory)
106
public
HttpSysOptions
Options { get; }
HttpSysOptions.cs (1)
34
/// Initializes a new <see cref="
HttpSysOptions
"/>.
MessagePump.cs (2)
20
private readonly
HttpSysOptions
_options;
37
public 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)
42
var
options = services.GetRequiredService<IOptions<
HttpSysOptions
>>().Value;
68
public static IWebHostBuilder UseHttpSys(this IWebHostBuilder hostBuilder, Action<
HttpSysOptions
> options)