Class with property referenced with dll not serializing
- by djerry
Hey guys,
I got this class TapiCall. It has 4 properties : 2 datetimes, 1 string and an object. The object is a class that's referenced by Atapi3.dll, so i cannot alter it. My class TapiCall looks like this :
[DataContract]
public class TapiCall
{
private DateTime start, end;
private TCall call;
private string status;
…