Files
ServicesCallService/WebMVC/Controllers/ApiController.cs
2020-10-16 22:55:16 -04:00

20 lines
491 B
C#

using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Filters;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebMVC.Controllers
{
public class ApiController : Controller
{
public override void OnActionExecuted(ActionExecutedContext context)
{
// This is where I capture the error from the ApiService
base.OnActionExecuted(context);
}
}
}