C# Класс LinFu.AOP.Interfaces.TypeActivatorRegistry

Represents a registry that allows users to statically register ITypeActivator instances.
Показать файл Открыть проект

Открытые методы

Метод Описание
GetActivator ( ITypeActivationContext context ) : ITypeActivator

Obtains an activator for the given context.

SetActivator ( ITypeActivator activator ) : void

Sets the ITypeActivator that will be used to instantiate object instances.

Описание методов

GetActivator() публичный статический Метод

Obtains an activator for the given context.
public static GetActivator ( ITypeActivationContext context ) : ITypeActivator
context ITypeActivationContext The instance that describes the object to be created.
Результат ITypeActivator

SetActivator() публичный статический Метод

Sets the ITypeActivator that will be used to instantiate object instances.
public static SetActivator ( ITypeActivator activator ) : void
activator ITypeActivator The that will instantiate types.
Результат void