Missing <summary> Documentation for Spring.Aop.Framework.DynamicProxy
| Class | Description |
|---|---|
| AbstractAopProxyMethodBuilder | Base class for AOP method builders that contains common functionalities. |
| AbstractAopProxyTypeBuilder | Base class for proxy builders that can be used to create an AOP proxy for any object. |
| AdvisedProxy | Represents the AOP configuration data built-in with the proxy. |
| BaseAopProxyMethodBuilder | IProxyMethodBuilder implementation that delegates method calls to the base method. |
| BaseCompositionAopProxy | Base class that each dynamic composition proxy has to extend. |
| CachedAopProxyFactory | Implementation of the IAopProxyFactory interface that caches the AOP proxy Type instance. |
| CompositionAopProxyTypeBuilder | Builds an AOP proxy type using composition. |
| DecoratorAopProxyTypeBuilder | Builds an AOP proxy type using the decorator pattern. |
| DefaultAopProxyFactory | Default implementation of the IAopProxyFactory interface, either creating a decorator-based dynamic proxy or a composition-based dynamic proxy. |
| IAdvisedProxyMethodBuilder | IProxyMethodBuilder implementation that delegates method calls to an IAdvised instance. |
| InheritanceAopProxyTypeBuilder | Builds an AOP proxy type using inheritance. |
| IntroductionProxyMethodBuilder | IProxyMethodBuilder implementation that delegates method calls to introduction object. |
| TargetAopProxyMethodBuilder | IProxyMethodBuilder implementation that delegates method calls to target object. |
| Interface | Description |
|---|---|
| IAopProxyTypeGenerator | Describes the operations that generates IL instructions used to build the Aop proxy type. |