選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

AopEndPipeValue.cs 263B

12345678910
  1. namespace HealthMonitor.Core.Pipeline.Aop
  2. {
  3. public class AopEndPipeValue : AopValueBase
  4. {
  5. public override async Task Invoke(CacheInterceptorContext context)
  6. {
  7. await context.AopDelegate(context.AopContext);
  8. }
  9. }
  10. }