메소드 | 설명 | |
---|---|---|
Initialize ( |
Called once at application startup for every method the aspect is applied for.
|
|
OnEntry ( |
Called on target method is starting execution
|
|
OnException ( |
Called on unhandled exception occured in target method.
|
|
OnExit ( |
Called on target method finished execution either successfully or with exception. Called after OnSuccess and OnException
|
|
OnSuccess ( |
Called on target method successfully finished execution.
|
public Initialize ( |
||
method | ||
리턴 | void |
public OnEntry ( |
||
methodExecInfo | ||
리턴 | void |
public OnException ( |
||
methodExecInfo | ||
리턴 | void |
public OnExit ( |
||
methodExecInfo | ||
리턴 | void |
public OnSuccess ( |
||
methodExecInfo | ||
리턴 | void |