IBootstrapper 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.
Provides an abstraction defining the initial entry point for a service. At startup, the
host looks for an implementation of the IBootstrapper interface and kicks off
the configuration process by calling Initialize. It is then the bootstrapper's
responsibility to call ServiceConfig which will then kick off the configuration
process starting with the IHostConfigProvider, then move to IExtensionConfigProvider
implementations, and finally calling the application code for final configuration. If there
is no IBootstrapper implementation then the host looks for a static class called
WebApiConfig
and expects a static method called Register
.
public interface IBootstrapper
type IBootstrapper = interface
Public Interface IBootstrapper
Methods
Initialize() |
Defines the entry point for the application. It is the responsibility of this entry point to call ServiceConfig which will start the configuration of the application. |
Applies to
Azure SDK for .NET