C# 클래스 LinFu.AOP.Interfaces.TypeActivatorRegistry

Represents a registry that allows users to statically register ITypeActivator instances.
파일 보기 프로젝트 열기: philiplaureano/LinFu

공개 메소드들

메소드 설명
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