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 98ef360 + 4a72dd6 commit 3a86b73Copy full SHA for 3a86b73
src/Ninject.Extensions.Interception/AsyncInterceptor.cs
@@ -23,8 +23,9 @@ public abstract class AsyncInterceptor : IInterceptor
23
/// <summary>
24
/// Intercepts the specified invocation.
25
/// </summary>
26
+ /// <remarks>If overridden, you should invoke base.</remarks>
27
/// <param name="invocation">The invocation to intercept.</param>
- public void Intercept(IInvocation invocation)
28
+ public virtual void Intercept(IInvocation invocation)
29
{
30
var returnType = invocation.Request.Method.ReturnType;
31
if (returnType == typeof(Task))
0 commit comments