ISupportsStartup Interface

Definition

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.

Applies to