Interface IStartupFactory<TStartup>
- Namespace
- Codebelt.Bootstrapper
- Assembly
- Codebelt.Bootstrapper.dll
Provides an interface for initializing services and middleware used by an application.
public interface IStartupFactory<out TStartup>
where TStartup : StartupRoot
Type Parameters
TStartup
The type to create.
Properties
Instance
Provides access to an instance of the specified TStartup
.
TStartup Instance { get; }
Property Value
- TStartup
A reference to the object of type StartupRoot.