Executes after target method returns successfully.
[Visual Basic] Public NotOverridable Sub AfterReturning( _ ByVal returnValue As Object, _ ByVal method As MethodInfo, _ ByVal arguments As Object, _ ByVal target As Object _ ) _
Note that the supplied returnValuecannot be changed by this type of advice... use the around advice type (IMethodInterceptor) if you need to change the return value of an advised method invocation. The data encapsulated by the supplied returnValue can of course be modified though.