C# Class Spring.Aop.Framework.CountingMultiAdvice

Advice object that implements multiple Advice interfaces.
Inheritance: Spring.Aop.Framework.MethodCounter, IMethodBeforeAdvice, IAfterReturningAdvice, IThrowsAdvice
显示文件 Open project: spring-projects/spring-net

Public Methods

Method Description
AfterReturning ( object returnValue, MethodInfo method, object args, object target ) : void
AfterThrowing ( ApplicationException aex ) : void
Before ( MethodInfo method, object args, object target ) : void

Method Details

AfterReturning() public method

public AfterReturning ( object returnValue, MethodInfo method, object args, object target ) : void
returnValue object
method System.Reflection.MethodInfo
args object
target object
return void

AfterThrowing() public method

public AfterThrowing ( ApplicationException aex ) : void
aex System.ApplicationException
return void

Before() public method

public Before ( MethodInfo method, object args, object target ) : void
method System.Reflection.MethodInfo
args object
target object
return void