Beispiel #1
0
 public async Task DispatchAsync(DetectionRequest request, IContext context)
 {
     await _sender.SendAsync(
         await _transformer.TransformAsync(
             await _detector.DetectAsync(request),
             context
             ),
         context
         );
 }