Class ServiceConfigurationContext
- Namespace
- Volo.Abp.Modularity
- Assembly
- Volo.Abp.Core.dll
public class ServiceConfigurationContext
- Inheritance
-
ServiceConfigurationContext
- Inherited Members
- Extension Methods
Constructors
ServiceConfigurationContext(IServiceCollection)
public ServiceConfigurationContext(IServiceCollection services)
Parameters
services
IServiceCollection
Properties
this[string]
Gets/sets arbitrary named objects those can be stored during the service registration phase and shared between modules.
This is a shortcut usage of the Items dictionary. Returns null if given key is not found in the Items dictionary.
public object? this[string key] { get; set; }
Parameters
key
string
Property Value
Items
public IDictionary<string, object?> Items { get; }
Property Value
Services
public IServiceCollection Services { get; }