C# Class LinFu.Proxy.MethodPicker

Inheritance: IMethodPicker
Mostrar archivo Open project: philiplaureano/LinFu Class Usage Examples

Public Methods

Method Description
ChooseProxyMethodsFrom ( Type baseType, IEnumerable baseInterfaces ) : IEnumerable

Determines which methods can be proxied from the given baseType and baseInterfaces.

By default, only public virtual methods will be proxied.

Method Details

ChooseProxyMethodsFrom() public method

Determines which methods can be proxied from the given baseType and baseInterfaces.
By default, only public virtual methods will be proxied.
public ChooseProxyMethodsFrom ( Type baseType, IEnumerable baseInterfaces ) : IEnumerable
baseType System.Type The base class of the proxy type currently being generated.
baseInterfaces IEnumerable The list of interfaces that the proxy must implement.
return IEnumerable