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

OnMethodYieldAdvice 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 OnYield(MethodExecutionArgs).

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

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

See Also