I am using ServiceStack's IPlugin
mechanism in combination with request and response filters defined by attributes on my Service
implementations. The attribute based filters can have an int to define their priority.
When defining a global request/response filter, there doesn't seem to be a way to set up the order in which that executes compared to other global request/response filters.
For example, I'd like my execution timing plugin's filters to be the first request filter, and the last response filter, to capture the execution time of requests fully.
Is it possible to define priority of filter when adding on request/response filters via IPlugin.Register
?