C# Класс LinFu.Proxy.ProxyFactory

Наследование: IProxyFactory, IInitialize
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
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