views:

31

answers:

2

I just realized that DataContractSerializer expects nodes in the alphabetical order or the specified order. Is there any way i could make it NOT do it?

TIA

+1  A: 

I don't think so. You may find the discussion on this question informative:

http://stackoverflow.com/questions/1513525/ignore-field-order-in-datacontractserializer

kbrimington
A: 

I used IDispatchMessageInspector.AfterReceiveRequest to intercept the message and sort it alphabetically.

ps