If i have few WCF extension modules of same kind (like parameter inspector) can i be sure they're executed in the order i define them in the configuration file?

<system.serviceModel>
    <extensions>
        <behaviorExtensions>
            <add name="MyInspectorA" type="blabla" />
            <add name="MyInspectorB" type="blabla" />
        </behaviorExtensions>
    </extensions>
</system.serviceModel>

I need more guaranties than just my observations but can't find any confirmations on MSDN.

link|improve this question

78% accept rate
feedback

1 Answer

up vote 2 down vote accepted

They'll be executed in the order they appear in the <system.serviceModel> / <behaviors> / <[service|endpoint]Behaviors> / <behavior>, not in the order listed in the behavior extensions. And service behaviors are called before endpoint behaviors - the order among the behaviors is described in http://blogs.msdn.com/b/carlosfigueira/archive/2011/03/16/wcf-extensibility-behaviors.aspx.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.