Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

11 lines
263B

  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. }