2

Where do async global request filters fit in the order of operations as described here?

We recently added a global async filter and a request filter with priority int.MaxValue was executed before the the async filter. When we changed the async global request filter to a non-async global request filter, the global request filter was executed before the request filter with priority int.MaxValue.

Is this the expected behavior?

Anthony Carl
  • 182
  • 6

1 Answers1

0

They're executed after the sync Global Request Filters and Request Filter Attributes.

mythz
  • 141,670
  • 29
  • 246
  • 390
  • I would have expected it to happen just before or just after the non-async global request filters. Thanks for the clarification! – Anthony Carl May 04 '17 at 18:22