Class WebProgram<TStartup>
- Namespace
- Codebelt.Bootstrapper.Web
- Assembly
- Codebelt.Bootstrapper.Web.dll
The entry point of an application responsible for registering its WebStartup partner.
public class WebProgram<TStartup> : ProgramRoot<TStartup> where TStartup : WebStartup
Type Parameters
TStartup
The type containing the startup methods for the application.
- Inheritance
-
ProgramRoot<TStartup>WebProgram<TStartup>
Methods
CreateHostBuilder(String[])
Creates an IHostBuilder used to set up the host.
protected static IHostBuilder CreateHostBuilder(string[] args)
Parameters
args
String[]The command line arguments.
Returns
- IHostBuilder
The initialized IHostBuilder.
See Also
ProgramRoot<TStartup>