Hi,
I am serializing a class that contains int and string type members and an
arrayList of enumerated type.
Here is are the members of my class:
[System.Xml.Serialization.XmlTypeAttribute(
TypeName = "SensorID.Reader.Agile")]
public class AgileReaderSettings : IReaderSettings
{
private int m_noAntennas;
private string m_ipAddress;
private int m_port;
private int m_autoIDTimeout;
private int m_scanTimeout;
private ProtocolsList m_protocols;
}
The problem I am having is that I ccannot serialize the protocols list
which is an array list of enumerated types. Everything else serializes with
no problems. I am thinking the reason may be because it's a list of
enumerated types.
I appreciate any suggestions that might help.
Thanks.
Mohamed Benyounes