PostSharpAPI ReferencePost­Sharp.​Aspects.​AdvicesOn­Method­Exit­Advice
Open sandboxFocus

OnMethodExitAdvice Class

Custom attribute that, when applied on a method of an aspect class, specifies that this method is an advice having the same semantics as OnExit(MethodExecutionArgs).

Inheritance
OnMethodExitAdvice
Namespace: PostSharp.Aspects.Advices
Assembly: PostSharp.dll
Syntax
[RequiresMethodExecutionAdviceAnalysis]
[RequiresDebuggerEnhancement]
public sealed class OnMethodExitAdvice : OnMethodBoundaryAdvice
Remarks

The method to which this custom attribute is applied must be public and must have the same signature as OnExit(MethodExecutionArgs). However, it can be static.


If an aspect defines many advices (among OnMethodEntryAdvice , OnMethodExitAdvice , OnMethodSuccessAdvice and OnMethodExceptionAdvice ) that are meant to be applied to the same methods with consistent ordering, these advices should be grouped together (see Master property).

note

Standalone advices or group masters should also be annotated by a custom attribute derived from Pointcut .

Constructors

Name Description
OnMethodExitAdvice()

See Also