Show / Hide Table of Contents

Class ServiceConfigurationContext

Inheritance
System.Object
ServiceConfigurationContext
Namespace: Volo.Abp.Modularity
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

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft