Ejemplo n.º 1
0
 public IHttpActionResult Delete()
 {
     Logger.LogInformation("Kill all registered processes directive received !");
     try
     {
         HookService.KillAllInjectedProcesses();
         return(Ok());
     }
     catch (Exception e)
     {
         return(new ExceptionResult(e, this));
     }
 }