ISupportsStartup Interface
Definition
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.
An interface implemented by IWebHostBuilders that handle Configure(IWebHostBuilder, Action<IApplicationBuilder>), UseStartup(IWebHostBuilder, Type) and UseStartup<TStartup>(IWebHostBuilder, Func<WebHostBuilderContext,TStartup>) directly.
public interface ISupportsStartup
type ISupportsStartup = interface
Public Interface ISupportsStartup
- Derived
Methods
Configure(Action<IApplicationBuilder>) |
Specify the startup method to be used to configure the web application. |
Configure(Action<WebHostBuilderContext,IApplicationBuilder>) |
Specify the startup method to be used to configure the web application. |
UseStartup(Type) |
Specify the startup type to be used by the web host. |
UseStartup<TStartup>(Func<WebHostBuilderContext,TStartup>) |
Specify a factory that creates the startup instance to be used by the web host. |