I recently started migrating my app from Web.Api .NET standard to .Net Core.
First of all are all the steps of the Web Api pipeline still there?
When i say all the steps i mean : Web api pipeline Poster
In terms of usage i can see the filters are applied through the
[ServiceFilter(typeof(NameOfAttribute))]
But in a variety of articles like this one : https://andrewlock.net/asp-net-core-in-action-filters/
i can see different kind of filters like resource and results filters.
Also i cannot see the usage of Delegating Handlers.
Where should we integrate the functionality of the previous pipeline with the new standards?
Thanks