OnMethodBoundaryAspect.OnResume Method |
Namespace: PostSharp.Aspects
Assembly: PostSharp (in PostSharp.dll) Version: 6.6.14.0 (6.6.14.0)
public virtual void OnResume( MethodExecutionArgs args )
Parameters
- args
- Type: PostSharp.Aspects.MethodExecutionArgs
Event arguments specifying which method is being executed and which are its arguments.
Implements
IOnStateMachineBoundaryAspect.OnResume(MethodExecutionArgs)For iterator methods, this advice is executed before the MoveNext() method. However, the very first call of MoveNext() maps to OnEntry(MethodExecutionArgs).
In async methods, the advice is executed just after the state machine restarts execution after having waited as a result of the await statement.