Class ServiceConfigurationContext
Inheritance
System.Object
ServiceConfigurationContext
Assembly: Volo.Abp.Core.dll
Syntax
public class ServiceConfigurationContext : object
Constructors
ServiceConfigurationContext(IServiceCollection)
Declaration
public ServiceConfigurationContext(IServiceCollection services)
Parameters
Type |
Name |
Description |
IServiceCollection |
services |
|
Properties
Item[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.
Declaration
public object this[string key] { get; set; }
Parameters
Type |
Name |
Description |
System.String |
key |
|
Property Value
Type |
Description |
System.Object |
|
Items
Declaration
public IDictionary<string, object> Items { get; }
Property Value
Type |
Description |
IDictionary<System.String, System.Object> |
|
Services
Declaration
public IServiceCollection Services { get; }
Property Value
Type |
Description |
IServiceCollection |
|
Extension Methods