IOnStateMachineBoundaryAspect.OnResume Method |
Namespace: PostSharp.Aspects
Assembly: PostSharp (in PostSharp.dll) Version: 2023.0.3.0 (2023.0.3.0)
void OnResume( MethodExecutionArgs args )
Parameters
- args
- Type: PostSharp.Aspects.MethodExecutionArgs
Event arguments specifying which method is being executed and which are its arguments.
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.