Which one should be use in wcf NetDataContractAttribute or DataContractAttribute?
the data class as follows
namespace ABC
{
[Serializable]
public class DeviceConf
{
public DeviceConf() {}
[XmlElement(ElementName = "ProtocolName")]
public string ProtocolName{ get; set; }
[XmlElement(ElementName = "Type")]
public string TypeName { get; set; }
}
}