-
Notifications
You must be signed in to change notification settings - Fork 357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FunctionInvocationFilterAttribute preview #2496
Comments
Also interested in an update on this. The limited functionality provided by the current Filters API and a lack of DI support means it's extremely difficult to bring HTTP APIs hosted by Azure Functions in line with those in App Services. For example, you cannot change the response code of an HTTP trigger using Filters, which is the the ideal place for cross-cutting concerns that do exactly this (auth, validation, etc.) |
@jamesharling As for modifying the response etc., we have something like this
It works nicely, but it is annoying that it is marked as Preview for two years and hence all compilers complain about it. |
Is there any progress on this issue? |
Please find the discussion in #1284 |
OMG I have been waiting for so long, and im still writing boiler plate code in each function.. When can the community expect someone to take action and bring this issue to an end ? |
Still I am seeing obsolete and deprecated. Is there any update on this? |
any progress on this issue? |
Any progress on this issue ? |
Any progress on this issue? because I'm using it in several functions, and I would like to remove the ignore so the compiler move with it life. |
Are there any alternatives that I can use? Since this is still obsolete? |
Any update? We need a solution and I hate to use something that starts out obsolete. |
For everyone's information; the last update on filters from Microsoft is that it is indeed dead and should be replaced with .NET middleware. #2825 Unfortunately, to use .NET middleware one must rewrite to use isolated worker process... |
facing the same. |
FunctionInvocationFilterAttribute
has been in "preview" and hence "obsolete" since 2018.Are there alternatives or plans to finalize it?
Repro steps
Create azure functions project in dotnet
Implement FunctionInvocationFilterAttribute
Expected behavior
The attribute filter has been in "preview" and hence "obsolete" since 2018. Are there any plans to finalize it?
Actual behavior
Implementing and using
FunctionInvocationFilterAttribute
does not complain about obsolete class.Known workarounds
Ignore warning
Related information
File can be found here
The text was updated successfully, but these errors were encountered: