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
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
I don't think so. You may find the discussion on this question informative:
http://stackoverflow.com/questions/1513525/ignore-field-order-in-datacontractserializer
I used IDispatchMessageInspector.AfterReceiveRequest to intercept the message and sort it alphabetically.