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.