ListsCurrently the MessageSerializer only supports list types of When you have a list in your class, when the type is being serialized each item in the list will be serialized in order starting at index 0. Similarly, when deserializing a list each item will be deserialized and added to the back of the list in order. Note that when deserializing a list, the list must meet one of the following conditions:
Without meeting one of the above conditions, the MessageSerializer will not know how many items to deserialize into the list. |