Ralf
Ralf
Duplicate of #40 Solution was already proposed but not merged yet.
I don't understand how there can be multiple exceptions in one user action. Do you mean when using concurrent/parallel method calls? All in all I would prefer using the unhandled...
The "InvalidOperationException" indicates there is a bug in the FlowBehavior-Handling for async methods. Async support was added by @keith-anders. This would have to be investigated. But can you explain the...
Unfortunately with our aspect it is only possible to execute code before and after the method call but it is not possible to reexecute the weaved method. In PostSharp this...
example retry Polly policy: [https://github.com/App-vNext/Polly#retry](https://github.com/App-vNext/Polly#retry)
I think part of the performance problems are because of #85 In your code you could try to cache the created generic method. I played with your code and using...
#85 is now solved. please check and report if you observe other performance problems
Please checkout [v2.0.144](https://www.nuget.org/packages/MethodBoundaryAspect.Fody/2.0.144) because this release includes performance optimizations also for open generic methods.
Regarding the problem of resolving the OnEntry() method I think the weaver will throw the exception because it finds 2 OnEntry() methods, one which is parametrized and the non parametrized....
@mesheets your problem regarding the duplicate method names should be fixed in v2.0.145 with commit 3608d6b. Then your code using your derived aspect "MyTypedMethodBoundary" compiles and runs. But in your...