C# 클래스 LinFu.Proxy.ProxyFactory

상속: IProxyFactory, IInitialize
파일 보기 프로젝트 열기: philiplaureano/LinFu 1 사용 예제들

공개 메소드들

메소드 설명
CreateProxyType ( Type baseType, IEnumerable baseInterfaces ) : Type

Creates a proxy type using the given baseType as the base class and ensures that the proxy type implements the given interface types.

Initialize ( IServiceContainer source ) : void

Initializes the ProxyFactory instance with the source container.

ProxyFactory ( ) : System

Initializes the proxy factory with the default values.

메소드 상세

CreateProxyType() 공개 메소드

Creates a proxy type using the given baseType as the base class and ensures that the proxy type implements the given interface types.
public CreateProxyType ( Type baseType, IEnumerable baseInterfaces ) : Type
baseType System.Type The base class from which the proxy type will be derived.
baseInterfaces IEnumerable The list of interfaces that the proxy will implement.
리턴 System.Type

Initialize() 공개 메소드

Initializes the ProxyFactory instance with the source container.
public Initialize ( IServiceContainer source ) : void
source IServiceContainer The instance that will hold the ProxyFactory.
리턴 void

ProxyFactory() 공개 메소드

Initializes the proxy factory with the default values.
public ProxyFactory ( ) : System
리턴 System