Property | Type | Description | |
---|---|---|---|
ConfigureServicesDelegates | List |
Method | Description | |
---|---|---|
BuildFeature ( IServiceCollection serviceCollection ) : void | ||
DependOn ( ) : IFeatureRegistration | ||
EnsureDependencies ( List featureRegistrations ) : void | ||
FeatureRegistration ( ) : System |
Initializes the instance of the object.
|
|
FeatureServices ( Action configureServices ) : IFeatureRegistration | ||
UseStartup ( ) : IFeatureRegistration |
Method | Description | |
---|---|---|
FeatureStartup ( IServiceCollection serviceCollection, Type startupType ) : void |
A feature can use specified method to configure its services. The specified method needs to have the following signature to be invoked:
|
public BuildFeature ( IServiceCollection serviceCollection ) : void | ||
serviceCollection | IServiceCollection | |
return | void |
public EnsureDependencies ( List featureRegistrations ) : void | ||
featureRegistrations | List | |
return | void |
public FeatureServices ( Action configureServices ) : IFeatureRegistration | ||
configureServices | Action | |
return | IFeatureRegistration |