Disable authentication for single method in the service

Hello,

I have a base service class that is marked with [Authenticate] attribute. Now, I have a class that inherits from this base service class and I need to implement there a method that doesn’t require authentication (other methods do).

Can I do it? How can I do it?

Thank you

You can’t remove a request filter attribute, refactor your base class so it doesn’t have an [Authenticate] attribute then create another sub class that does, then use the appropriate base class depending if your Services require auth or not.