I am working on AngularJS, WebApi. Have angular services to fetch data from database using Entity-Framework LINQ.
So, when I run my app, I want to see how much time my web api took to return response from server?
How can we do it?
I am working on AngularJS, WebApi. Have angular services to fetch data from database using Entity-Framework LINQ.
So, when I run my app, I want to see how much time my web api took to return response from server?
How can we do it?
Copyright © 2021 Jogjafile Inc.
There are several ways to accomplish this thing.
First way is to use ActinoFilter. For that refer this answer.
Second way is to use Middleware
Add new class file, here it's
LoggingMiddleware
Add your Middleware in
Startup.cs
(ASP.NET Core)Hope this helps!