ActionExecutingContext
ActionExecutingContext is a class in ASP.NET Core MVC that represents the context in which an action method is about to be executed. It is used within the action filter pipeline. This context object provides access to various properties and methods that allow filters to inspect and modify the incoming request and outgoing response before, during, and after an action method is invoked.
Key properties of ActionExecutingContext include the Controller instance, the ActionDescriptor describing the action being executed, the
The ActionExecutingContext is typically created and populated by the MVC framework as part of the request