OnMethodSuccessAdvice Class |
System.Attribute
PostSharp.Aspects.Advices.Advice
PostSharp.Aspects.Advices.GroupingAdvice
PostSharp.Aspects.Advices.OnMethodBoundaryAdvice
PostSharp.Aspects.Advices.OnMethodSuccessAdvice
Namespace: PostSharp.Aspects.Advices
Assembly: PostSharp (in PostSharp.dll) Version: 4.3.48.0 (4.3.48.0)
public sealed class OnMethodSuccessAdvice : OnMethodBoundaryAdvice
The OnMethodSuccessAdvice type exposes the following members.
Name | Description | |
---|---|---|
OnMethodSuccessAdvice | Initializes a new instance of the OnMethodSuccessAdvice class |
Name | Description | |
---|---|---|
ApplyToStateMachine |
Determines how the advice should behave when it is applied to an iterator or
async methods, which are compiled into state machines.
(Inherited from OnMethodBoundaryAdvice.) | |
Description |
A human-readable description of the current advice.
(Inherited from Advice.) | |
LinesOfCodeAvoided |
Reduction in the code lines count achieved by applying the advice instance to one code element.
(Inherited from Advice.) | |
Master |
Name of the master advice method. If this property is not set,
the current method is itself the master of the group. Only
master methods can define selectors (Pointcut)
and dependencies (AspectDependencyAttribute).
(Inherited from GroupingAdvice.) |
Name | Description | |
---|---|---|
QueryInterface<T> |
Gets the implementation of a specified interface for the specified object.
(Defined by QueryInterfaceExtensions.) |
The method to which this custom attribute is applied must be public and must have the same signature as OnSuccess(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).
Standalone advices or group masters should also be annotated by a custom attribute derived from Pointcut . |