コード例 #1
0
 public override async Task InvokeAsync(AspectContext context, AsyncAspectDelegate next)
 {
     try
     {
         await next(context);
     }
     catch (Exception ex)
     {
         context.SetException(ex);
         await interceptor.InvokeAsync(context, next);
     }
 }