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

OnMethodResumeAdvice 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 OnResume(MethodExecutionArgs).

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

The method to which this custom attribute is applied must be public and must have the same signature as OnResume(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
OnMethodResumeAdvice()

See Also