We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 88183c1 + c66bbdc commit bf063b0Copy full SHA for bf063b0
src/Ninject.Extensions.Interception/AsyncInterceptor.cs
@@ -102,9 +102,9 @@ private void InterceptTaskWithResult<TResult>(IInvocation invocation)
102
}).Unwrap()
103
.ContinueWith(t =>
104
{
105
+ invocationClone.ReturnValue = t.Result;
106
this.AfterInvoke(invocationClone);
107
this.AfterInvoke(invocationClone, t);
- invocationClone.ReturnValue = t.Result;
108
return (TResult)invocationClone.ReturnValue;
109
});
110
}
0 commit comments