2 instantiations of WebHostBuilderOptions
Microsoft.AspNetCore.Hosting (1)
GenericHostWebHostBuilderExtensions.cs (1)
75var webHostBuilderOptions = new WebHostBuilderOptions();
Microsoft.AspNetCore.Hosting.Tests (1)
Fakes\GenericWebHostBuilderWrapper.cs (1)
19_builder = new GenericWebHostBuilder(hostBuilder, new WebHostBuilderOptions());
15 references to WebHostBuilderOptions
Microsoft.AspNetCore (3)
ConfigureHostBuilder.cs (1)
117IHostBuilder ISupportsConfigureWebHost.ConfigureWebHost(Action<IWebHostBuilder> configure, Action<WebHostBuilderOptions> configureOptions)
GenericHostBuilderExtensions.cs (2)
56/// <param name="configureOptions">The delegate that configures the <see cref="WebHostBuilderOptions"/>.</param> 58public static IHostBuilder ConfigureWebHostDefaults(this IHostBuilder builder, Action<IWebHostBuilder> configure, Action<WebHostBuilderOptions> configureOptions)
Microsoft.AspNetCore.Hosting (12)
GenericHost\GenericWebHostBuilder.cs (1)
29public GenericWebHostBuilder(IHostBuilder builder, WebHostBuilderOptions options)
GenericHost\SlimWebHostBuilder.cs (1)
20public SlimWebHostBuilder(IHostBuilder builder, WebHostBuilderOptions options)
GenericHost\WebHostBuilderBase.cs (1)
15public WebHostBuilderBase(IHostBuilder builder, WebHostBuilderOptions options)
GenericHostWebHostBuilderExtensions.cs (7)
33/// <param name="configureWebHostBuilder">The delegate that configures the <see cref="WebHostBuilderOptions"/>.</param> 35public static IHostBuilder ConfigureWebHost(this IHostBuilder builder, Action<IWebHostBuilder> configure, Action<WebHostBuilderOptions> configureWebHostBuilder) 49/// <param name="configureWebHostBuilder">The delegate that configures the <see cref="WebHostBuilderOptions"/>.</param> 51public static IHostBuilder ConfigureSlimWebHost(this IHostBuilder builder, Action<IWebHostBuilder> configure, Action<WebHostBuilderOptions> configureWebHostBuilder) 62Func<IHostBuilder, WebHostBuilderOptions, IWebHostBuilder> createWebHostBuilder, 64Action<WebHostBuilderOptions> configureWebHostBuilder) 75var webHostBuilderOptions = new WebHostBuilderOptions();
Infrastructure\ISupportsConfigureWebHost.cs (2)
18/// <param name="configureOptions">The delegate that configures the <see cref="WebHostBuilderOptions"/>.</param> 20IHostBuilder ConfigureWebHost(Action<IWebHostBuilder> configure, Action<WebHostBuilderOptions> configureOptions);