blasferatu
blasferatu
Hi @ndrwrbgs, I created a class named ```ExceptionInterceptor``` that implements ```IInterceptor``` which can be used with Autofac interception. This class, in turn, delegates Intercept method calls to the class that...
Hi @tornike87, I executed your code several times and the interceptor method was always called only once. Here is an example of the result in the console: `Hello World!` `{`...
Hello @tornike87, I cleaned the solution and executed your code repeatedly in Visual Studio 2017 Professional version 15.7.2 with breakpoints in class `UniversalInterceptor`'s `Intercept` method and class `UniversalInterceptorAsync`'s `async Task...
@tornike87 I have exactly the same behaviour you describe when I run the latest code sample you provided. When running again your **first code sample**, I found that - If...
@tornike87, I am afraid I don't know the answer to your question. I can only add that in my interception methods I do have asynchronous code **after** `invocation.Proceed();`. I wish...
@ndrwrbgs, Thank you for the information and suggestions.