Method | Description | |
---|---|---|
CreateClassProxy ( |
Generates a class which extends the baseClass, overriding all the virtual methods and implementing all the mixin interfaces.
|
|
CreateProxy ( |
Generates a proxy implementing the specified interface and the mixins redirecting method invocations to the specifed interceptor.
|
|
CustomProxyGenerator ( ) : System |
Method | Description | |
---|---|---|
CreateProxyGenerationOptions ( object mixins ) : Castle.DynamicProxy.ProxyGenerationOptions |
Creates a context - which is used to guid custom proxy generation.
|
public CreateClassProxy ( |
||
baseClass | Super class | |
mixins | object | Array of mixins to be implemented by the proxy |
interceptor | Castle.Core.Interceptor.IInterceptor | Instance of |
return | object |
public CreateProxy ( |
||
inter | Interface to be implemented. | |
target | object | |
mixins | object | Array of instances (mixins) to be introducted. |
interceptor | Castle.Core.Interceptor.IInterceptor | Instance of |
return | object |