WebApplication.CreateBuilder Method
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
CreateBuilder() |
Initializes a new instance of the WebApplicationBuilder class with preconfigured defaults. |
CreateBuilder(WebApplicationOptions) |
Initializes a new instance of the WebApplicationBuilder class with preconfigured defaults. |
CreateBuilder(String[]) |
Initializes a new instance of the WebApplicationBuilder class with preconfigured defaults. |
- Source:
- WebApplication.cs
Initializes a new instance of the WebApplicationBuilder class with preconfigured defaults.
public static Microsoft.AspNetCore.Builder.WebApplicationBuilder CreateBuilder ();
static member CreateBuilder : unit -> Microsoft.AspNetCore.Builder.WebApplicationBuilder
Public Shared Function CreateBuilder () As WebApplicationBuilder
Returns
Applies to
ASP.NET Core 9.0 and other versions
Product | Versions |
---|---|
ASP.NET Core | 6.0, 7.0, 8.0, 9.0 |
- Source:
- WebApplication.cs
Initializes a new instance of the WebApplicationBuilder class with preconfigured defaults.
public static Microsoft.AspNetCore.Builder.WebApplicationBuilder CreateBuilder (Microsoft.AspNetCore.Builder.WebApplicationOptions options);
static member CreateBuilder : Microsoft.AspNetCore.Builder.WebApplicationOptions -> Microsoft.AspNetCore.Builder.WebApplicationBuilder
Public Shared Function CreateBuilder (options As WebApplicationOptions) As WebApplicationBuilder
Parameters
- options
- WebApplicationOptions
The WebApplicationOptions to configure the WebApplicationBuilder.
Returns
Applies to
ASP.NET Core 9.0 and other versions
Product | Versions |
---|---|
ASP.NET Core | 6.0, 7.0, 8.0, 9.0 |
- Source:
- WebApplication.cs
Initializes a new instance of the WebApplicationBuilder class with preconfigured defaults.
public static Microsoft.AspNetCore.Builder.WebApplicationBuilder CreateBuilder (string[] args);
static member CreateBuilder : string[] -> Microsoft.AspNetCore.Builder.WebApplicationBuilder
Public Shared Function CreateBuilder (args As String()) As WebApplicationBuilder
Parameters
- args
- String[]
The command line arguments.
Returns
Applies to
ASP.NET Core 9.0 and other versions
Product | Versions |
---|---|
ASP.NET Core | 6.0, 7.0, 8.0, 9.0 |