OnMethodInvokeAsyncAdvice Class |
System.Attribute
PostSharp.Aspects.Advices.Advice
PostSharp.Aspects.Advices.GroupingAdvice
PostSharp.Aspects.Advices.OnMethodInvokeBaseAdvice
PostSharp.Aspects.Advices.OnMethodInvokeAsyncAdvice
Namespace: PostSharp.Aspects.Advices
Assembly: PostSharp (in PostSharp.dll) Version: 2023.0.3.0 (2023.0.3.0)
public sealed class OnMethodInvokeAsyncAdvice : OnMethodInvokeBaseAdvice
The OnMethodInvokeAsyncAdvice type exposes the following members.
Name | Description | |
---|---|---|
OnMethodInvokeAsyncAdvice | Initializes a new instance of the OnMethodInvokeAsyncAdvice class |
Name | Description | |
---|---|---|
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.) | |
SemanticallyAdvisedMethodKinds |
Determines which target methods will be advised semantically. This affects the behavior of the advice when it's applied to
iterator or async methods, which are compiled into state machines.
(Inherited from OnMethodInvokeBaseAdvice.) | |
UnsupportedTargetAction |
Specifies the action to take when the advice is applied to an async method with unsupported return value type.
(Inherited from OnMethodInvokeBaseAdvice.) |
The method to which this custom attribute is applied must be public and must have the same signature as OnInvokeAsync(MethodInterceptionArgs). However, it can be static.